diff options
author | Gerd Knorr <devnull@localhost> | 2004-10-07 12:29:56 +0000 |
---|---|---|
committer | Gerd Knorr <devnull@localhost> | 2004-10-07 12:29:56 +0000 |
commit | eb73a724de0d29ba493faeb809fe10ab251180fe (patch) | |
tree | 74ef82664dacb558a9b8c076c41d5de276449cd5 /linux/drivers/media/video/cx88/cx88-vbi.c | |
parent | f28d706bf875e195561dfbcf6d4e50947a0033c2 (diff) | |
download | mediapointer-dvb-s2-eb73a724de0d29ba493faeb809fe10ab251180fe.tar.gz mediapointer-dvb-s2-eb73a724de0d29ba493faeb809fe10ab251180fe.tar.bz2 |
- switch msp3400 + cx88 to 2.6-style module parameters.
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-vbi.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-vbi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-vbi.c b/linux/drivers/media/video/cx88/cx88-vbi.c index ca2d70e55..210553f00 100644 --- a/linux/drivers/media/video/cx88/cx88-vbi.c +++ b/linux/drivers/media/video/cx88/cx88-vbi.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-vbi.c,v 1.10 2004/09/23 13:58:19 kraxel Exp $ + * $Id: cx88-vbi.c,v 1.11 2004/10/07 12:29:56 kraxel Exp $ */ #include <linux/kernel.h> #include <linux/module.h> @@ -9,11 +9,11 @@ #include "cx88.h" static unsigned int vbibufs = 4; -MODULE_PARM(vbibufs,"i"); +module_param(vbibufs,int,0644); MODULE_PARM_DESC(vbibufs,"number of vbi buffers, range 2-32"); static unsigned int vbi_debug = 0; -MODULE_PARM(vbi_debug,"i"); +module_param(vbi_debug,int,0644); MODULE_PARM_DESC(vbi_debug,"enable debug messages [vbi]"); #define dprintk(level,fmt, arg...) if (vbi_debug >= level) \ |