dect
/
linux-2.6
Archived
13
0
Fork 0

rt2x00: checkpatch.pl error fixes for rt2800usb.c

rt2800usb.c:48: ERROR: do not initialise statics to 0 or NULL

Signed-off-by: Mark Einon <mark.einon@gmail.com>
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Mark Einon 2010-11-06 15:45:41 +01:00 committed by John W. Linville
parent c6cbadeb3a
commit 144b80bc05
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@
/*
* Allow hardware encryption to be disabled.
*/
static int modparam_nohwcrypt = 0;
static int modparam_nohwcrypt;
module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");