aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/name_table.h
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2011-12-29 20:43:44 -0500
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-12-29 21:53:29 -0500
commitfead39098badacbfb5890de9a10e5b265788a524 (patch)
tree98d6f26a9525a8289efc79d6bb5fc626ae890b42 /net/tipc/name_table.h
parent4584310b4a787c9b70e5507a8b5288ba32b0a909 (diff)
tipc: rename struct subscription to struct tipc_subscription
Make this rename so that it is consistent with the majority of the other tipc structs and to assist in removing any ambiguity with other similar names in other subsystems. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'net/tipc/name_table.h')
-rw-r--r--net/tipc/name_table.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/tipc/name_table.h b/net/tipc/name_table.h
index c3b0f2c3dbbe..8086b42f92ad 100644
--- a/net/tipc/name_table.h
+++ b/net/tipc/name_table.h
@@ -39,7 +39,7 @@
39 39
40#include "node_subscr.h" 40#include "node_subscr.h"
41 41
42struct subscription; 42struct tipc_subscription;
43struct tipc_port_list; 43struct tipc_port_list;
44 44
45/* 45/*
@@ -100,8 +100,8 @@ struct publication *tipc_nametbl_insert_publ(u32 type, u32 lower, u32 upper,
100 u32 scope, u32 node, u32 ref, u32 key); 100 u32 scope, u32 node, u32 ref, u32 key);
101struct publication *tipc_nametbl_remove_publ(u32 type, u32 lower, 101struct publication *tipc_nametbl_remove_publ(u32 type, u32 lower,
102 u32 node, u32 ref, u32 key); 102 u32 node, u32 ref, u32 key);
103void tipc_nametbl_subscribe(struct subscription *s); 103void tipc_nametbl_subscribe(struct tipc_subscription *s);
104void tipc_nametbl_unsubscribe(struct subscription *s); 104void tipc_nametbl_unsubscribe(struct tipc_subscription *s);
105int tipc_nametbl_init(void); 105int tipc_nametbl_init(void);
106void tipc_nametbl_stop(void); 106void tipc_nametbl_stop(void);
107 107