]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
usb: wusbcore: Do not initialise statics to 0.
authorSandhya Bankar <bankarsandhya512@gmail.com>
Mon, 9 May 2016 02:56:01 +0000 (08:26 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 9 May 2016 11:08:46 +0000 (13:08 +0200)
Do not initialise statics to 0.
This patch is found by checkpatch.pl script.

Signed-off-by: Sandhya Bankar <bankarsandhya512@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/wusbcore/crypto.c

index 1072d5e71ce8f5a547fc31b1f3632534154202f6..33acd1599e99e92cc819d6332bd61ff7ee69665b 100644 (file)
@@ -54,7 +54,7 @@
 #include <linux/usb/wusb.h>
 #include <linux/scatterlist.h>
 
-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");