* [PATCH] wl3501: fix module_param types/warnings
@ 2005-01-10 23:04 Randy.Dunlap
0 siblings, 0 replies; only message in thread
From: Randy.Dunlap @ 2005-01-10 23:04 UTC (permalink / raw)
To: jgarzik, acme; +Cc: netdev
Linux 2.6.10-bk13
Fix gcc warning:
drivers/net/wireless/wl3501_cs.c:2282: warning: return from incompatible pointer type
module_param() isn't happy about different types for irq_mask;
unsigned long vs. int. Make it uint consistently.
Signed-off-by: Randy Dunlap <rddunlap@osdl.org>
diffstat:=
drivers/net/wireless/wl3501_cs.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff -Naurp ./drivers/net/wireless/wl3501_cs.c~wl3501_types ./drivers/net/wireless/wl3501_cs.c
--- ./drivers/net/wireless/wl3501_cs.c~wl3501_types 2005-01-10 10:38:39.908438288 -0800
+++ ./drivers/net/wireless/wl3501_cs.c 2005-01-10 12:40:44.175980376 -0800
@@ -100,7 +100,7 @@ module_param(pc_debug, int, 0);
/* Parameters that can be set with 'insmod' */
/* Bit map of interrupts to choose from */
/* This means pick from 15, 14, 12, 11, 10, 9, 7, 5, 4, and 3 */
-static unsigned long wl3501_irq_mask = 0xdeb8;
+static unsigned int wl3501_irq_mask = 0xdeb8;
static int wl3501_irq_list[4] = { -1 };
/*
@@ -2279,7 +2279,7 @@ static void __exit wl3501_exit_module(vo
module_init(wl3501_init_module);
module_exit(wl3501_exit_module);
-module_param(wl3501_irq_mask, int, 0);
+module_param(wl3501_irq_mask, uint, 0);
module_param_array(wl3501_irq_list, int, NULL, 0);
MODULE_AUTHOR("Fox Chen <mhchen@golf.ccl.itri.org.tw>, "
"Arnaldo Carvalho de Melo <acme@conectiva.com.br>,"
---
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-01-10 23:04 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-10 23:04 [PATCH] wl3501: fix module_param types/warnings Randy.Dunlap
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).