Commit 999393cf authored by Randy Dunlap's avatar Randy Dunlap Committed by James Bottomley

[PATCH] gdth: fix module_param() type for 'irq'

Fix 'irq' module_param: it is an array:
drivers/scsi/gdth.c:679: warning: return from incompatible pointer type
Signed-off-by: default avatarRandy Dunlap <rddunlap@osdl.org>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent b389f382
......@@ -642,7 +642,7 @@ static int probe_eisa_isa = 0;
static int force_dma32 = 0;
/* parameters for modprobe/insmod */
module_param(irq, int, 0);
module_param_array(irq, int, NULL, 0);
module_param(disable, int, 0);
module_param(reserve_mode, int, 0);
module_param_array(reserve_list, int, NULL, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment