diff options
author | David S. Miller <davem@davemloft.net> | 2013-02-06 15:54:38 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-02-06 15:54:38 -0500 |
commit | a07fdceccf9d9f1b87f781e9a87662182e590d70 (patch) | |
tree | e2b574c4a6ed4db049681c73d41336c82f09adf9 /net/ieee802154 | |
parent | e185483e6b84c127d0b1c890b6b703701ae52d35 (diff) |
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: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ieee802154')
-rw-r--r-- | net/ieee802154/6lowpan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c index 09cba81d2c4a..f62c3b963f95 100644 --- a/net/ieee802154/6lowpan.c +++ b/net/ieee802154/6lowpan.c | |||
@@ -1267,7 +1267,7 @@ static inline int __init lowpan_netlink_init(void) | |||
1267 | return rtnl_link_register(&lowpan_link_ops); | 1267 | return rtnl_link_register(&lowpan_link_ops); |
1268 | } | 1268 | } |
1269 | 1269 | ||
1270 | static inline void __init lowpan_netlink_fini(void) | 1270 | static inline void lowpan_netlink_fini(void) |
1271 | { | 1271 | { |
1272 | rtnl_link_unregister(&lowpan_link_ops); | 1272 | rtnl_link_unregister(&lowpan_link_ops); |
1273 | } | 1273 | } |