V4L/DVB (5963): Module parameter description for SFN workaround
authorPatrick Boettcher <pb@linuxtv.org>
Tue, 31 Jul 2007 13:36:06 +0000 (10:36 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Wed, 10 Oct 2007 01:04:04 +0000 (22:04 -0300)
Thanks to Matt Doran I found that there the module parameter description
was not OK.

Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/dvb/frontends/dib3000mc.c
drivers/media/dvb/frontends/dib7000p.c

index f0096de..edae0be 100644 (file)
@@ -24,7 +24,7 @@ MODULE_PARM_DESC(debug, "turn on debugging (default: 0)");
 
 static int buggy_sfn_workaround;
 module_param(buggy_sfn_workaround, int, 0644);
-MODULE_PARM_DESC(debug, "Enable work-around for buggy SFNs (default: 0)");
+MODULE_PARM_DESC(buggy_sfn_workaround, "Enable work-around for buggy SFNs (default: 0)");
 
 #define dprintk(args...) do { if (debug) { printk(KERN_DEBUG "DiB3000MC/P:"); printk(args); printk("\n"); } } while (0)
 
index aa7dc45..f45bcfc 100644 (file)
@@ -20,7 +20,7 @@ MODULE_PARM_DESC(debug, "turn on debugging (default: 0)");
 
 static int buggy_sfn_workaround;
 module_param(buggy_sfn_workaround, int, 0644);
-MODULE_PARM_DESC(debug, "Enable work-around for buggy SFNs (default: 0)");
+MODULE_PARM_DESC(buggy_sfn_workaround, "Enable work-around for buggy SFNs (default: 0)");
 
 #define dprintk(args...) do { if (debug) { printk(KERN_DEBUG "DiB7000P: "); printk(args); printk("\n"); } } while (0)