From: Ebru Akagunduz Date: Tue, 8 Oct 2013 20:31:51 +0000 (+0300) Subject: Staging: lustre: fix ERROR: do not initialise statics to 0 or NULL in module.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d62403d6dd60b86e1dc9125324a1b3e78fdca913;p=linux-beck.git Staging: lustre: fix ERROR: do not initialise statics to 0 or NULL in module.c Fix checkpatch.pl issues with do not initialise statics to 0 or NULL in module.c Signed-off-by: Ebru Akagunduz Reviewed-by: Josh Triplett Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lnet/lnet/module.c b/drivers/staging/lustre/lnet/lnet/module.c index afb81755cbad..f323f038b22a 100644 --- a/drivers/staging/lustre/lnet/lnet/module.c +++ b/drivers/staging/lustre/lnet/lnet/module.c @@ -37,7 +37,7 @@ #define DEBUG_SUBSYSTEM S_LNET #include -static int config_on_load = 0; +static int config_on_load; CFS_MODULE_PARM(config_on_load, "i", int, 0444, "configure network at module load");