From: Geert Uytterhoeven Date: Wed, 24 Apr 2013 02:46:37 +0000 (+0000) Subject: isdn/sc: Fix incorrect module_param_array types X-Git-Tag: v3.10-rc1~132^2~15^2~9 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=b9e48de110ec64bdfd4b83358d0e286551bb110c;p=~emulex%2Finfiniband.git isdn/sc: Fix incorrect module_param_array types drivers/isdn/sc/init.c: In function ‘__check_irq’: drivers/isdn/sc/init.c:36: warning: return from incompatible pointer type drivers/isdn/sc/init.c: In function ‘__check_ram’: drivers/isdn/sc/init.c:37: warning: return from incompatible pointer type Signed-off-by: Geert Uytterhoeven Signed-off-by: David S. Miller --- diff --git a/drivers/isdn/sc/init.c b/drivers/isdn/sc/init.c index 6b580b2c717..ca997bd4e81 100644 --- a/drivers/isdn/sc/init.c +++ b/drivers/isdn/sc/init.c @@ -33,8 +33,8 @@ static unsigned long ram[] = {0, 0, 0, 0}; static bool do_reset = 0; module_param_array(io, int, NULL, 0); -module_param_array(irq, int, NULL, 0); -module_param_array(ram, int, NULL, 0); +module_param_array(irq, byte, NULL, 0); +module_param_array(ram, long, NULL, 0); module_param(do_reset, bool, 0); static int identify_board(unsigned long, unsigned int);