diff options
author | Johannes Stezenbach <js@linuxtv.org> | 2005-05-16 21:54:47 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-17 07:59:35 -0700 |
commit | 42dc6617fe41ea65a94399821058353d0b12c0ab (patch) | |
tree | 69fbbd8cd8fd959e03998c956b8c0d9556f14839 /drivers | |
parent | df481ae59074756f1d0b2712d8b3fe8d04eb16c1 (diff) | |
download | kernel-crypto-42dc6617fe41ea65a94399821058353d0b12c0ab.tar.gz kernel-crypto-42dc6617fe41ea65a94399821058353d0b12c0ab.tar.xz kernel-crypto-42dc6617fe41ea65a94399821058353d0b12c0ab.zip |
[PATCH] dvb: DST: fix a bug in the module parameter
fix a bug in the module parameter (Dominique Dumont)
Signed-off-by: Johannes Stezenbach <js@linuxtv.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/dvb/bt8xx/dst_ca.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/bt8xx/dst_ca.c b/drivers/media/dvb/bt8xx/dst_ca.c index 9160bdf479a..0945bb97871 100644 --- a/drivers/media/dvb/bt8xx/dst_ca.c +++ b/drivers/media/dvb/bt8xx/dst_ca.c @@ -38,7 +38,7 @@ MODULE_PARM_DESC(verbose, "verbose startup messages, default is 1 (yes)"); static unsigned int debug = 1; module_param(debug, int, 0644); -MODULE_PARM_DESC(dst_ca_debug, "debug messages, default is 0 (yes)"); +MODULE_PARM_DESC(debug, "debug messages, default is 1 (yes)"); #define dprintk if (debug) printk |