]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
6lowpan: Remove __init tag from lowpan_netlink_fini().
authorDavid S. Miller <davem@davemloft.net>
Wed, 6 Feb 2013 20:54:38 +0000 (15:54 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 14 Mar 2013 18:26:37 +0000 (11:26 -0700)
commit a07fdceccf9d9f1b87f781e9a87662182e590d70 upstream.

It's called from both __init and __exit code, so neither
tag is appropriate.

Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/ieee802154/6lowpan.c

index f651da60f1618f089c2d21eef069ac5b3648218d..76c3d0aabd5e3282df8c3002ebf6231b19c967e6 100644 (file)
@@ -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);
 }