Commit 3bc7100a authored by David S. Miller's avatar David S. Miller Committed by Greg Kroah-Hartman

6lowpan: Remove __init tag from lowpan_netlink_fini().

commit a07fdcec upstream.

It's called from both __init and __exit code, so neither
tag is appropriate.
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 364709dd
......@@ -1234,7 +1234,7 @@ static inline int __init lowpan_netlink_init(void)
return rtnl_link_register(&lowpan_link_ops);
}
static inline void __init lowpan_netlink_fini(void)
static inline void lowpan_netlink_fini(void)
{
rtnl_link_unregister(&lowpan_link_ops);
}
......
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