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:
Родитель
fd3a459000
Коммит
b4aadd2073
|
@ -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
|
||||
|
||||
/*
|
||||
|
|
Загрузка…
Ссылка в новой задаче