Commit a07fdcec authored by David S. Miller's avatar David S. Miller

6lowpan: Remove __init tag from lowpan_netlink_fini().

It's called from both __init and __exit code, so neither
tag is appropriate.
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e185483e
......@@ -1267,7 +1267,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