Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1396898 > unrolled thread

[PATCH] usb: wusbcore: Do not initialise statics to 0.

Started bySandhya Bankar <bankarsandhya512@gmail.com>
First post2016-05-09 12:00 +0200
Last post2016-05-09 12:00 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] usb: wusbcore: Do not initialise statics to 0. Sandhya Bankar <bankarsandhya512@gmail.com> - 2016-05-09 12:00 +0200

#1396898 — [PATCH] usb: wusbcore: Do not initialise statics to 0.

FromSandhya Bankar <bankarsandhya512@gmail.com>
Date2016-05-09 12:00 +0200
Subject[PATCH] usb: wusbcore: Do not initialise statics to 0.
Message-ID<rwQ8P-2SQ-29@gated-at.bofh.it>
Do not initialise statics to 0.
This patch is found by checkpatch.pl script.

Signed-off-by: Sandhya Bankar <bankarsandhya512@gmail.com>
---
 drivers/usb/wusbcore/crypto.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/wusbcore/crypto.c b/drivers/usb/wusbcore/crypto.c
index 8ed8e34..f7fc2371 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");
-- 
1.8.3.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web