* [patch] v4l: ir-common modparam
@ 2004-11-08 8:53 Gerd Knorr
0 siblings, 0 replies; only message in thread
From: Gerd Knorr @ 2004-11-08 8:53 UTC (permalink / raw)
To: Andrew Morton, Kernel List
Convert the ir-common module to new-style insmod options.
Signed-off-by: Gerd Knorr <kraxel@bytesex.org>
---
drivers/media/common/ir-common.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff -u linux-2.6.10/drivers/media/common/ir-common.c linux/drivers/media/common/ir-common.c
--- linux-2.6.10/drivers/media/common/ir-common.c 2004-11-07 12:23:30.784211678 +0100
+++ linux/drivers/media/common/ir-common.c 2004-11-07 16:07:15.079364384 +0100
@@ -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 ...
@@ -31,11 +31,11 @@
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)
--
#define printk(args...) fprintf(stderr, ## args)
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-11-08 9:00 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-08 8:53 [patch] v4l: ir-common modparam Gerd Knorr
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.