public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1 net-next] ieee802154: fix __init functions
@ 2014-10-01  5:27 Fabian Frederick
  2014-10-01  5:34 ` Marcel Holtmann
  2014-10-01  6:03 ` David Miller
  0 siblings, 2 replies; 5+ messages in thread
From: Fabian Frederick @ 2014-10-01  5:27 UTC (permalink / raw)
  To: linux-kernel
  Cc: Fabian Frederick, Alexander Aring, David S. Miller, linux-wpan,
	netdev

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>
---
 net/ieee802154/reassembly.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/ieee802154/reassembly.c b/net/ieee802154/reassembly.c
index 30ec608..7cfcd68 100644
--- a/net/ieee802154/reassembly.c
+++ b/net/ieee802154/reassembly.c
@@ -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;
 }
-- 
1.9.3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-10-01  6:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-01  5:27 [PATCH 1/1 net-next] ieee802154: fix __init functions Fabian Frederick
2014-10-01  5:34 ` Marcel Holtmann
2014-10-01  6:02   ` David Miller
2014-10-01  6:08   ` Alexander Aring
2014-10-01  6:03 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox