Commit 0e0609bb authored by Allan Stephens's avatar Allan Stephens Committed by David S. Miller

[TIPC]: Eliminate "sparse" symbol warnings

This patch eliminates warnings about undeclared symbols.
Signed-off-by: default avatarAllan Stephens <allan.stephens@windriver.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e247a8f5
...@@ -99,6 +99,9 @@ struct tipc_bearer { ...@@ -99,6 +99,9 @@ struct tipc_bearer {
char name[TIPC_MAX_BEARER_NAME]; char name[TIPC_MAX_BEARER_NAME];
}; };
/*
* TIPC routines available to supported media types
*/
int tipc_register_media(u32 media_type, int tipc_register_media(u32 media_type,
char *media_name, char *media_name,
...@@ -123,6 +126,12 @@ void tipc_continue(struct tipc_bearer *tb_ptr); ...@@ -123,6 +126,12 @@ void tipc_continue(struct tipc_bearer *tb_ptr);
int tipc_enable_bearer(const char *bearer_name, u32 bcast_scope, u32 priority); int tipc_enable_bearer(const char *bearer_name, u32 bcast_scope, u32 priority);
int tipc_disable_bearer(const char *name); int tipc_disable_bearer(const char *name);
/*
* Routines made available to TIPC by supported media types
*/
int tipc_eth_media_start(void);
void tipc_eth_media_stop(void);
#endif #endif
......
...@@ -48,14 +48,6 @@ ...@@ -48,14 +48,6 @@
#include "subscr.h" #include "subscr.h"
#include "config.h" #include "config.h"
int tipc_eth_media_start(void);
void tipc_eth_media_stop(void);
int tipc_handler_start(void);
void tipc_handler_stop(void);
int tipc_socket_init(void);
void tipc_socket_stop(void);
int tipc_netlink_start(void);
void tipc_netlink_stop(void);
#define TIPC_MOD_VER "1.6.2" #define TIPC_MOD_VER "1.6.2"
......
...@@ -180,6 +180,12 @@ extern int tipc_core_start(void); ...@@ -180,6 +180,12 @@ extern int tipc_core_start(void);
extern void tipc_core_stop(void); extern void tipc_core_stop(void);
extern int tipc_core_start_net(void); extern int tipc_core_start_net(void);
extern void tipc_core_stop_net(void); extern void tipc_core_stop_net(void);
extern int tipc_handler_start(void);
extern void tipc_handler_stop(void);
extern int tipc_netlink_start(void);
extern void tipc_netlink_stop(void);
extern int tipc_socket_init(void);
extern void tipc_socket_stop(void);
static inline int delimit(int val, int min, int max) static inline int delimit(int val, int min, int max)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment