1
0
Fork 0

bonding: Remove __exit tag from bond_netlink_fini().

It can be called from the module init function, so it cannot
be in the exit section.

Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
David S. Miller 2013-10-19 19:09:18 -04:00
parent 97e592bd29
commit a729e83ad6
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ int __init bond_netlink_init(void)
return rtnl_link_register(&bond_link_ops);
}
void __exit bond_netlink_fini(void)
void bond_netlink_fini(void)
{
rtnl_link_unregister(&bond_link_ops);
}