From 7c76bb1a7a019d13cdd29f7918886267c35ef0b1 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sat, 3 Oct 2009 12:54:02 +0000 Subject: [PATCH] Fixed two occurrences of the following checkpatch complaint: ERROR: do not initialise externals to 0 or NULL. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1170 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- qla2x00t/qla_os.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qla2x00t/qla_os.c b/qla2x00t/qla_os.c index d0f352561..49e501672 100644 --- a/qla2x00t/qla_os.c +++ b/qla2x00t/qla_os.c @@ -54,13 +54,13 @@ module_param(ql2xloginretrycount, int, S_IRUGO|S_IRUSR); MODULE_PARM_DESC(ql2xloginretrycount, "Specify an alternate value for the NVRAM login retry count."); -int ql2xenableclass2 = 0; +int ql2xenableclass2; module_param(ql2xenableclass2, int, S_IRUGO|S_IRUSR); MODULE_PARM_DESC(ql2xenableclass2, "Specify if Class 2 operations are supported from the very " "beginning."); -int ql2xallocfwdump = 0; +int ql2xallocfwdump; module_param(ql2xallocfwdump, int, S_IRUGO|S_IRUSR); MODULE_PARM_DESC(ql2xallocfwdump, "Option to enable allocation of memory for a firmware dump "