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 <Allan.Stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
2db9983a43
commit
e3ec9c7d5e
@@ -104,7 +104,7 @@ struct name_table {
|
||||
u32 local_publ_count;
|
||||
};
|
||||
|
||||
static struct name_table table = { NULL } ;
|
||||
static struct name_table table;
|
||||
static atomic_t rsv_publ_ok = ATOMIC_INIT(0);
|
||||
DEFINE_RWLOCK(tipc_nametbl_lock);
|
||||
|
||||
|
Reference in New Issue
Block a user