lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Tue, 26 May 2015 02:04:47 +0530
From:	Shailendra Verma <shailendra.capricorn@...il.com>
To:	Tim Waugh <tim@...erelk.net>
Cc:	linux-kernel@...r.kernel.org,
	Shailendra Verma <shailendra.capricorn@...il.com>
Subject: [PATCH] block:paride - Do not initialise statics to 0.

Static variables are initialised to 0 by GCC.
Fixes the following checkpatch errors:
ERROR: do not initialise statics to 0 or NULL
FILE: drivers/block/paride/pd.c:129:
static bool verbose = 0;
FILE: drivers/block/paride/pf.c:129:
static bool verbose = 0;
FILE: drivers/block/paride/pt.c:120:
static bool verbose = 0;

Signed-off-by: Shailendra Verma <shailendra.capricorn@...il.com>
---
 drivers/block/paride/pd.c |    2 +-
 drivers/block/paride/pf.c |    2 +-
 drivers/block/paride/pt.c |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/block/paride/pd.c b/drivers/block/paride/pd.c
index d48715b..f7a142a 100644
--- a/drivers/block/paride/pd.c
+++ b/drivers/block/paride/pd.c
@@ -126,7 +126,7 @@
 */
 #include <linux/types.h>
 
-static bool verbose = 0;
+static bool verbose;
 static int major = PD_MAJOR;
 static char *name = PD_NAME;
 static int cluster = 64;
diff --git a/drivers/block/paride/pf.c b/drivers/block/paride/pf.c
index 9a15fd3..8bfbb13 100644
--- a/drivers/block/paride/pf.c
+++ b/drivers/block/paride/pf.c
@@ -126,7 +126,7 @@
 
 */
 
-static bool verbose = 0;
+static bool verbose;
 static int major = PF_MAJOR;
 static char *name = PF_NAME;
 static int cluster = 64;
diff --git a/drivers/block/paride/pt.c b/drivers/block/paride/pt.c
index 2596042..3679582c 100644
--- a/drivers/block/paride/pt.c
+++ b/drivers/block/paride/pt.c
@@ -117,7 +117,7 @@
 
 */
 
-static bool verbose = 0;
+static bool verbose;
 static int major = PT_MAJOR;
 static char *name = PT_NAME;
 static int disable = 0;
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ