Commit 0ee82fd7 authored by Randy Dunlap's avatar Randy Dunlap Committed by Linus Torvalds

[PATCH] radio-typhoon: use correct module_param data type

Use correct data type for module_param:
drivers/media/radio/radio-typhoon.c:317: warning: return from
incompatible pointer type
Signed-off-by: default avatarRandy Dunlap <rddunlap@osdl.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 8e87fa89
......@@ -314,7 +314,7 @@ module_param(radio_nr, int, 0);
#ifdef MODULE
static unsigned long mutefreq = 0;
module_param(mutefreq, int, 0);
module_param(mutefreq, ulong, 0);
MODULE_PARM_DESC(mutefreq, "Frequency used when muting the card (in kHz)");
#endif
......
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