mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
sparc: bw2.c fix bw2_exit
Fix void function bw2_exit returning value. Signed-off-by: Robert Reif <reif@earthlink.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fd7354108a
commit
2556bf1212
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue