Commit 2556bf12 authored by Robert Reif's avatar Robert Reif Committed by David S. Miller

sparc: bw2.c fix bw2_exit

Fix void function bw2_exit returning value.
Signed-off-by: default avatarRobert Reif <reif@earthlink.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fd735410
...@@ -399,10 +399,9 @@ static int __init bw2_init(void) ...@@ -399,10 +399,9 @@ static int __init bw2_init(void)
static void __exit bw2_exit(void) static void __exit bw2_exit(void)
{ {
return of_unregister_driver(&bw2_driver); of_unregister_driver(&bw2_driver);
} }
module_init(bw2_init); module_init(bw2_init);
module_exit(bw2_exit); module_exit(bw2_exit);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment