diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2018-03-26 10:33:13 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-27 10:50:22 -0400 |
commit | e1a22d13eb1f302afd692583777e27828d375a39 (patch) | |
tree | d69a87b53944fbb11abc3e34f7304e8a23f883b1 /net/tipc/node.c | |
parent | c76f2481b60a62814f4cb1678e48efa3385895aa (diff) |
tipc: tipc_node_create() can be static
Fixes the following sparse warning:
net/tipc/node.c:336:18: warning:
symbol 'tipc_node_create' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/node.c')
-rw-r--r-- | net/tipc/node.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tipc/node.c b/net/tipc/node.c index 4a95c8c155c6..4fb4327311bb 100644 --- a/net/tipc/node.c +++ b/net/tipc/node.c | |||
@@ -333,8 +333,8 @@ static void tipc_node_write_unlock(struct tipc_node *n) | |||
333 | } | 333 | } |
334 | } | 334 | } |
335 | 335 | ||
336 | struct tipc_node *tipc_node_create(struct net *net, u32 addr, | 336 | static struct tipc_node *tipc_node_create(struct net *net, u32 addr, |
337 | u8 *peer_id, u16 capabilities) | 337 | u8 *peer_id, u16 capabilities) |
338 | { | 338 | { |
339 | struct tipc_net *tn = net_generic(net, tipc_net_id); | 339 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
340 | struct tipc_node *n, *temp_node; | 340 | struct tipc_node *n, *temp_node; |