ieee802154: fix __init functions
authorFabian Frederick <fabf@skynet.be>
Wed, 1 Oct 2014 05:27:46 +0000 (07:27 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 1 Oct 2014 06:03:13 +0000 (02:03 -0400)
Commit 3243acd37fd9
("ieee802154: add __init to lowpan_frags_sysctl_register")

added __init to lowpan_frags_ns_sysctl_register instead of
lowpan_frags_sysctl_register

Suggested-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ieee802154/reassembly.c

index 30ec608b351a531f6d90f0ff9155a0e0a5a9f4e4..7cfcd6885225b57cb94e1ac51a25baeb76d83380 100644 (file)
@@ -498,7 +498,7 @@ static void lowpan_frags_sysctl_unregister(void)
        unregister_net_sysctl_table(lowpan_ctl_header);
 }
 #else
-static inline int __init lowpan_frags_ns_sysctl_register(struct net *net)
+static inline int lowpan_frags_ns_sysctl_register(struct net *net)
 {
        return 0;
 }
@@ -507,7 +507,7 @@ static inline void lowpan_frags_ns_sysctl_unregister(struct net *net)
 {
 }
 
-static inline int lowpan_frags_sysctl_register(void)
+static inline int __init lowpan_frags_sysctl_register(void)
 {
        return 0;
 }