diff options
| author | Allan Stephens <[email protected]> | 2010-12-31 18:59:34 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2011-01-01 21:57:57 +0000 |
| commit | e3ec9c7d5eea9adf2c604c623c987360cc700b88 (patch) | |
| tree | 0f17da131a7af8c66383d5a7f4bfa169f5b7e444 /net/tipc/node.c | |
| parent | tipc: split variable assignments out of conditional expressions (diff) | |
| download | kernel-e3ec9c7d5eea9adf2c604c623c987360cc700b88.tar.gz kernel-e3ec9c7d5eea9adf2c604c623c987360cc700b88.zip | |
tipc: remove zeroing assignments to static global variables
Cleans up TIPC's source code to eliminate the needless initialization
of static variables to zero.
These changes are purely cosmetic and do not alter the operation of TIPC
in any way.
Signed-off-by: Allan Stephens <[email protected]>
Signed-off-by: Paul Gortmaker <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/tipc/node.c')
| -rw-r--r-- | net/tipc/node.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/node.c b/net/tipc/node.c index 2ed162f91a08..3af53e327f49 100644 --- a/net/tipc/node.c +++ b/net/tipc/node.c @@ -44,7 +44,7 @@ static void node_established_contact(struct tipc_node *n_ptr); static DEFINE_SPINLOCK(node_create_lock); -u32 tipc_own_tag = 0; +u32 tipc_own_tag; /** * tipc_node_create - create neighboring node |
