From 1a6399de3074ab4dc6bdad694bbd8b47d486d6b2 Mon Sep 17 00:00:00 2001 From: Gerd Knorr Date: Sun, 7 Nov 2004 13:17:14 +0000 Subject: - yet another video-buf interface change + fixups. - move more modules to new-style insmod options. --- linux/drivers/media/common/ir-common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'linux/drivers/media/common') diff --git a/linux/drivers/media/common/ir-common.c b/linux/drivers/media/common/ir-common.c index d40c8f37b..10e608a9d 100644 --- a/linux/drivers/media/common/ir-common.c +++ b/linux/drivers/media/common/ir-common.c @@ -1,5 +1,5 @@ /* - * $Id: ir-common.c,v 1.4 2004/10/13 10:39:00 kraxel Exp $ + * $Id: ir-common.c,v 1.5 2004/11/07 13:17:15 kraxel Exp $ * * some common structs and functions to handle infrared remotes via * input layer ... @@ -36,11 +36,11 @@ MODULE_AUTHOR("Gerd Knorr [SuSE Labs]"); MODULE_LICENSE("GPL"); static int repeat = 1; -MODULE_PARM(repeat,"i"); +module_param(repeat, int, 0444); MODULE_PARM_DESC(repeat,"auto-repeat for IR keys (default: on)"); static int debug = 0; /* debug level (0,1,2) */ -MODULE_PARM(debug,"i"); +module_param(debug, int, 0644); #define dprintk(level, fmt, arg...) if (debug >= level) \ printk(KERN_DEBUG fmt , ## arg) -- cgit v1.2.3