From 5f7c3ff6a2e227418d363069ff89cf9d7f01fbc1 Mon Sep 17 00:00:00 2001 From: Jon Maloy <jon.maloy@ericsson.com> Date: Fri, 13 Jan 2006 10:45:44 +0000 Subject: [TIPC] Minor changes to #includes Signed-off-by: Jon Maloy <jon.maloy@ericsson.com> --- net/tipc/discover.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'net/tipc/discover.h') diff --git a/net/tipc/discover.h b/net/tipc/discover.h index 2a6114d91626..f4acb360d6c3 100644 --- a/net/tipc/discover.h +++ b/net/tipc/discover.h @@ -37,7 +37,7 @@ #ifndef _TIPC_DISCOVER_H #define _TIPC_DISCOVER_H -#include <linux/tipc.h> +#include "core.h" struct link_req; -- cgit From 4323add67792ced172d0d93b8b2e6187023115f1 Mon Sep 17 00:00:00 2001 From: Per Liden <per.liden@ericsson.com> Date: Wed, 18 Jan 2006 00:38:21 +0100 Subject: [TIPC] Avoid polluting the global namespace This patch adds a tipc_ prefix to all externally visible symbols. Signed-off-by: Per Liden <per.liden@ericsson.com> --- net/tipc/discover.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'net/tipc/discover.h') diff --git a/net/tipc/discover.h b/net/tipc/discover.h index f4acb360d6c3..0454fd1ae7f3 100644 --- a/net/tipc/discover.h +++ b/net/tipc/discover.h @@ -41,16 +41,16 @@ struct link_req; -struct link_req *disc_init_link_req(struct bearer *b_ptr, - const struct tipc_media_addr *dest, - u32 dest_domain, - u32 req_links); -void disc_update_link_req(struct link_req *req); -void disc_stop_link_req(struct link_req *req); +struct link_req *tipc_disc_init_link_req(struct bearer *b_ptr, + const struct tipc_media_addr *dest, + u32 dest_domain, + u32 req_links); +void tipc_disc_update_link_req(struct link_req *req); +void tipc_disc_stop_link_req(struct link_req *req); -void disc_recv_msg(struct sk_buff *buf); +void tipc_disc_recv_msg(struct sk_buff *buf); -void disc_link_event(u32 addr, char *name, int up); +void tipc_disc_link_event(u32 addr, char *name, int up); #if 0 int disc_create_link(const struct tipc_link_create *argv); #endif -- cgit