diff options
author | Manu Abraham <devnull@localhost> | 2005-04-23 19:02:29 +0000 |
---|---|---|
committer | Manu Abraham <devnull@localhost> | 2005-04-23 19:02:29 +0000 |
commit | 72ae784fc98d80617b7f1992f4855327370efe4e (patch) | |
tree | febae3221a5e5054e4c344535697d7822ef4f8b1 /linux/drivers/media/dvb/bt8xx/dst.c | |
parent | e94f4020dfb24bb99bab9390d1d4ca10f21b7025 (diff) | |
download | mediapointer-dvb-s2-72ae784fc98d80617b7f1992f4855327370efe4e.tar.gz mediapointer-dvb-s2-72ae784fc98d80617b7f1992f4855327370efe4e.tar.bz2 |
Changed module parameter defaults
Diffstat (limited to 'linux/drivers/media/dvb/bt8xx/dst.c')
-rw-r--r-- | linux/drivers/media/dvb/bt8xx/dst.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/linux/drivers/media/dvb/bt8xx/dst.c b/linux/drivers/media/dvb/bt8xx/dst.c index 9da5b2fcb..a28b7351e 100644 --- a/linux/drivers/media/dvb/bt8xx/dst.c +++ b/linux/drivers/media/dvb/bt8xx/dst.c @@ -34,19 +34,19 @@ #include "dst_common.h" -static unsigned int verbose = 0; +static unsigned int verbose = 1; module_param(verbose, int, 0644); MODULE_PARM_DESC(verbose, "verbose startup messages, default is 1 (yes)"); -static unsigned int debug = 0; +static unsigned int debug = 1; module_param(debug, int, 0644); -MODULE_PARM_DESC(debug, "debug messages, default is 0 (no)"); +MODULE_PARM_DESC(debug, "debug messages, default is 0 (yes)"); -static unsigned int dst_addons = 0; +static unsigned int dst_addons; module_param(dst_addons, int, 0644); MODULE_PARM_DESC(dst_addons, "CA daughterboard, default is 0 (no)"); -static unsigned int new_fw = 0; +static unsigned int new_fw; module_param(new_fw, int, 0644); MODULE_PARM_DESC(new_fw, "Support for the new interface firmware, default 0"); |