Commit c38985d2 authored by Gerd Knorr's avatar Gerd Knorr Committed by Linus Torvalds

[PATCH] v4l: ir-common modparam

Convert the ir-common module to new-style insmod options.
Signed-off-by: default avatarGerd Knorr <kraxel@bytesex.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 4628f2a1
/*
* $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_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [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)
......
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