From: Wen Zhiwei Date: Mon, 27 Dec 2021 08:22:01 +0000 (+0800) Subject: net:Remove initialization of static variables to 0 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b4aadd207322d243c3ceef107c495117898a36f1;p=linux.git net:Remove initialization of static variables to 0 Delete the initialization of three static variables because it is meaningless. Signed-off-by: Wen Zhiwei Signed-off-by: David S. Miller --- diff --git a/drivers/net/fddi/skfp/hwmtm.c b/drivers/net/fddi/skfp/hwmtm.c index 1070390565114..145767d98445c 100644 --- a/drivers/net/fddi/skfp/hwmtm.c +++ b/drivers/net/fddi/skfp/hwmtm.c @@ -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 /*