mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-24 06:01:28 +00:00
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:
@@ -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 "
|
||||
|
||||
Reference in New Issue
Block a user