mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 10:56:45 +07: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
@ -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);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user