Skip to content

Commit

Permalink
sparc: bw2.c fix bw2_exit
Browse files Browse the repository at this point in the history
Fix void function bw2_exit returning value.

Signed-off-by: Robert Reif <reif@earthlink.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Robert Reif authored and David S. Miller committed Apr 27, 2008
1 parent fd73541 commit 2556bf1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/video/bw2.c
Original file line number Diff line number Diff line change
Expand Up @@ -399,10 +399,9 @@ static int __init bw2_init(void)

static void __exit bw2_exit(void)
{
return of_unregister_driver(&bw2_driver);
of_unregister_driver(&bw2_driver);
}


module_init(bw2_init);
module_exit(bw2_exit);

Expand Down

0 comments on commit 2556bf1

Please sign in to comment.