lkml.org 
[lkml]   [2015]   [May]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] block:paride - Do not initialise statics to 0.
Date
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@gmail.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


\
 
 \ /
  Last update: 2015-05-25 22:41    [W:0.021 / U:0.032 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site