diff options
author | Rashika Kheria <rashika.kheria@gmail.com> | 2014-02-09 11:59:14 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-02-09 20:32:50 -0500 |
commit | 535d3ae9c808e6a5248f0524dbc7a9e997cf3288 (patch) | |
tree | 5d51203908e474c06ce99ee0bb7612896e0c2354 /net | |
parent | 7780d8ae4ae1960ef7c0570de0a1ecd7b60c8152 (diff) |
net: Move prototype declaration to header file include/net/net_namespace.h from net/ipx/af_ipx.c
Move prototype declaration of function to header file
include/net/net_namespace.h from net/ipx/af_ipx.c because they are used
by more than one file.
This eliminates the following warning in net/ipx/sysctl_net_ipx.c:
net/ipx/sysctl_net_ipx.c:33:6: warning: no previous prototype for ‘ipx_register_sysctl’ [-Wmissing-prototypes]
net/ipx/sysctl_net_ipx.c:38:6: warning: no previous prototype for ‘ipx_unregister_sysctl’ [-Wmissing-prototypes]
Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipx/af_ipx.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/net/ipx/af_ipx.c b/net/ipx/af_ipx.c index 224d05856b85..00b2a6d1c009 100644 --- a/net/ipx/af_ipx.c +++ b/net/ipx/af_ipx.c | |||
@@ -54,17 +54,10 @@ | |||
54 | #include <net/sock.h> | 54 | #include <net/sock.h> |
55 | #include <net/datalink.h> | 55 | #include <net/datalink.h> |
56 | #include <net/tcp_states.h> | 56 | #include <net/tcp_states.h> |
57 | #include <net/net_namespace.h> | ||
57 | 58 | ||
58 | #include <asm/uaccess.h> | 59 | #include <asm/uaccess.h> |
59 | 60 | ||
60 | #ifdef CONFIG_SYSCTL | ||
61 | extern void ipx_register_sysctl(void); | ||
62 | extern void ipx_unregister_sysctl(void); | ||
63 | #else | ||
64 | #define ipx_register_sysctl() | ||
65 | #define ipx_unregister_sysctl() | ||
66 | #endif | ||
67 | |||
68 | /* Configuration Variables */ | 61 | /* Configuration Variables */ |
69 | static unsigned char ipxcfg_max_hops = 16; | 62 | static unsigned char ipxcfg_max_hops = 16; |
70 | static char ipxcfg_auto_select_primary; | 63 | static char ipxcfg_auto_select_primary; |