Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

isdn: cpai: no need to initialise statics to 0

Static variables do not need to be initialised to 0, because compiler
will initialise all uninitialised statics to 0. Thus, remove the
unneeded initializations.

Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Jason Wang and committed by
David S. Miller
2cd24a2e 97884b07

+1 -1
+1 -1
drivers/isdn/capi/kcapi.c
··· 32 32 #include <linux/mutex.h> 33 33 #include <linux/rcupdate.h> 34 34 35 - static int showcapimsgs = 0; 35 + static int showcapimsgs; 36 36 static struct workqueue_struct *kcapi_wq; 37 37 38 38 module_param(showcapimsgs, uint, 0);