mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-04 00:06:36 +00:00
net:Remove initialization of static variables to 0
Delete the initialization of three static variables because it is meaningless. Signed-off-by: Wen Zhiwei <wenzhiwei@kylinos.cn> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fd3a459000
commit
b4aadd2073
1 changed files with 3 additions and 3 deletions
|
@ -38,10 +38,10 @@
|
|||
-------------------------------------------------------------
|
||||
*/
|
||||
#ifdef COMMON_MB_POOL
|
||||
static SMbuf *mb_start = 0 ;
|
||||
static SMbuf *mb_free = 0 ;
|
||||
static SMbuf *mb_start;
|
||||
static SMbuf *mb_free;
|
||||
static int mb_init = FALSE ;
|
||||
static int call_count = 0 ;
|
||||
static int call_count;
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue