summaryrefslogtreecommitdiff
path: root/drivers/usb/wusbcore
diff options
context:
space:
mode:
authorSandhya Bankar <bankarsandhya512@gmail.com>2016-05-09 08:26:01 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-05-09 13:08:46 +0200
commitef23db9c5ee2dd240ad6875e03d004416f4ee0df (patch)
treeb481cc046c7b77cbe9958b40984b375a34ec0cbd /drivers/usb/wusbcore
parent06acefde5bf1fb64b2d450ddb17c843f76837dc6 (diff)
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 <bankarsandhya512@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/wusbcore')
-rw-r--r--drivers/usb/wusbcore/crypto.c2
1 files changed, 1 insertions, 1 deletions
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 <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");