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 <[email protected]> --- 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 [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

