From: Sandhya Bankar Date: Mon, 9 May 2016 02:56:01 +0000 (+0530) Subject: usb: wusbcore: Do not initialise statics to 0. X-Git-Tag: v4.7-rc1~93^2~6 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ef23db9c5ee2dd240ad6875e03d004416f4ee0df;p=karo-tx-linux.git usb: wusbcore: Do not initialise statics to 0. Do not initialise statics to 0. This patch is found by checkpatch.pl script. Signed-off-by: Sandhya Bankar Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/wusbcore/crypto.c b/drivers/usb/wusbcore/crypto.c index 1072d5e71ce8..33acd1599e99 100644 --- a/drivers/usb/wusbcore/crypto.c +++ b/drivers/usb/wusbcore/crypto.c @@ -54,7 +54,7 @@ #include #include -static int debug_crypto_verify = 0; +static int debug_crypto_verify; module_param(debug_crypto_verify, int, 0); MODULE_PARM_DESC(debug_crypto_verify, "verify the key generation algorithms");