aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/node.c
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2006-03-20 22:37:52 -0800
committerDavid S. Miller <davem@davemloft.net>2006-03-20 22:37:52 -0800
commit988f088a8e9e555dc99ced83690967fad3d905f6 (patch)
tree7a5831410dd7e50a0b57e123bb2b03e8866ac601 /net/tipc/node.c
parent7c501a5960a1bdf3b9eaef262916dc67107ff2b5 (diff)
downloadkernel_samsung_smdk4412-988f088a8e9e555dc99ced83690967fad3d905f6.zip
kernel_samsung_smdk4412-988f088a8e9e555dc99ced83690967fad3d905f6.tar.gz
kernel_samsung_smdk4412-988f088a8e9e555dc99ced83690967fad3d905f6.tar.bz2
[TIPC]: Cleanups
This patch contains the following possible cleanups: - make needlessly global code static - #if 0 the following unused global functions: - name_table.c: tipc_nametbl_print() - name_table.c: tipc_nametbl_dump() - net.c: tipc_net_next_node() Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Per Liden <per.liden@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/node.c')
-rw-r--r--net/tipc/node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/node.c b/net/tipc/node.c
index 9f23845..0d5db06 100644
--- a/net/tipc/node.c
+++ b/net/tipc/node.c
@@ -214,7 +214,7 @@ int tipc_node_has_redundant_links(struct node *n_ptr)
(n_ptr->active_links[0] != n_ptr->active_links[1]));
}
-int tipc_node_has_active_routes(struct node *n_ptr)
+static int tipc_node_has_active_routes(struct node *n_ptr)
{
return (n_ptr && (n_ptr->last_router >= 0));
}