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:
Wen Zhiwei 2021-12-27 16:22:01 +08:00 коммит произвёл David S. Miller
Родитель fd3a459000
Коммит b4aadd2073
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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
/*