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
This commit is contained in:
Bart Van Assche
2009-10-03 12:54:02 +00:00
parent 82e9aa5061
commit 7c76bb1a7a

View File

@@ -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 "