Skip to content

Commit

Permalink
airport: remove useless return in a function returning void
Browse files Browse the repository at this point in the history
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Pavel Roskin authored and John W. Linville committed Dec 12, 2008
1 parent 89fad57 commit d070d85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/orinoco/airport.c
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ init_airport(void)
static void __exit
exit_airport(void)
{
return macio_unregister_driver(&airport_driver);
macio_unregister_driver(&airport_driver);
}

module_init(init_airport);
Expand Down

0 comments on commit d070d85

Please sign in to comment.