aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/bcast.c
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2011-12-29 20:33:30 -0500
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-12-29 21:53:29 -0500
commit4584310b4a787c9b70e5507a8b5288ba32b0a909 (patch)
treed3322226efb9610bfdbaf6304266e0bd46adba63 /net/tipc/bcast.c
parent358a0d1c9edcf6ff041776d65cdc2bc59887ab9c (diff)
tipc: rename struct port_list to struct tipc_port_list
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/bcast.c')
-rw-r--r--net/tipc/bcast.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/tipc/bcast.c b/net/tipc/bcast.c
index b6afe7356a86..653be792b102 100644
--- a/net/tipc/bcast.c
+++ b/net/tipc/bcast.c
@@ -893,9 +893,9 @@ static void tipc_nmap_diff(struct tipc_node_map *nm_a,
893 * tipc_port_list_add - add a port to a port list, ensuring no duplicates 893 * tipc_port_list_add - add a port to a port list, ensuring no duplicates
894 */ 894 */
895 895
896void tipc_port_list_add(struct port_list *pl_ptr, u32 port) 896void tipc_port_list_add(struct tipc_port_list *pl_ptr, u32 port)
897{ 897{
898 struct port_list *item = pl_ptr; 898 struct tipc_port_list *item = pl_ptr;
899 int i; 899 int i;
900 int item_sz = PLSIZE; 900 int item_sz = PLSIZE;
901 int cnt = pl_ptr->count; 901 int cnt = pl_ptr->count;
@@ -927,10 +927,10 @@ void tipc_port_list_add(struct port_list *pl_ptr, u32 port)
927 * 927 *
928 */ 928 */
929 929
930void tipc_port_list_free(struct port_list *pl_ptr) 930void tipc_port_list_free(struct tipc_port_list *pl_ptr)
931{ 931{
932 struct port_list *item; 932 struct tipc_port_list *item;
933 struct port_list *next; 933 struct tipc_port_list *next;
934 934
935 for (item = pl_ptr->next; item; item = next) { 935 for (item = pl_ptr->next; item; item = next) {
936 next = item->next; 936 next = item->next;