diff options
author | Allan Stephens <allan.stephens@windriver.com> | 2008-03-06 18:06:06 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-03-06 18:06:06 -0500 |
commit | 0e0609bbd2ab39a5964a70b409a5567ebbaf3700 (patch) | |
tree | fe73762d2bd338404e63511b383a49e5b2bd4113 /net/tipc | |
parent | e247a8f5d018740220c66bd5df1928d21d277d63 (diff) |
[TIPC]: Eliminate "sparse" symbol warnings
This patch eliminates warnings about undeclared symbols.
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc')
-rw-r--r-- | net/tipc/core.c | 8 | ||||
-rw-r--r-- | net/tipc/core.h | 6 |
2 files changed, 6 insertions, 8 deletions
diff --git a/net/tipc/core.c b/net/tipc/core.c index 9a5eb97684a2..b41b0ac67c0b 100644 --- a/net/tipc/core.c +++ b/net/tipc/core.c | |||
@@ -48,14 +48,6 @@ | |||
48 | #include "subscr.h" | 48 | #include "subscr.h" |
49 | #include "config.h" | 49 | #include "config.h" |
50 | 50 | ||
51 | int tipc_eth_media_start(void); | ||
52 | void tipc_eth_media_stop(void); | ||
53 | int tipc_handler_start(void); | ||
54 | void tipc_handler_stop(void); | ||
55 | int tipc_socket_init(void); | ||
56 | void tipc_socket_stop(void); | ||
57 | int tipc_netlink_start(void); | ||
58 | void tipc_netlink_stop(void); | ||
59 | 51 | ||
60 | #define TIPC_MOD_VER "1.6.2" | 52 | #define TIPC_MOD_VER "1.6.2" |
61 | 53 | ||
diff --git a/net/tipc/core.h b/net/tipc/core.h index feabca580820..3fe9b70331d9 100644 --- a/net/tipc/core.h +++ b/net/tipc/core.h | |||
@@ -180,6 +180,12 @@ extern int tipc_core_start(void); | |||
180 | extern void tipc_core_stop(void); | 180 | extern void tipc_core_stop(void); |
181 | extern int tipc_core_start_net(void); | 181 | extern int tipc_core_start_net(void); |
182 | extern void tipc_core_stop_net(void); | 182 | extern void tipc_core_stop_net(void); |
183 | extern int tipc_handler_start(void); | ||
184 | extern void tipc_handler_stop(void); | ||
185 | extern int tipc_netlink_start(void); | ||
186 | extern void tipc_netlink_stop(void); | ||
187 | extern int tipc_socket_init(void); | ||
188 | extern void tipc_socket_stop(void); | ||
183 | 189 | ||
184 | static inline int delimit(int val, int min, int max) | 190 | static inline int delimit(int val, int min, int max) |
185 | { | 191 | { |