diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-01-02 23:40:47 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 16:04:38 -0500 |
commit | 0e1fab90a8a76e09b669d3159ec910eab7ee97d6 (patch) | |
tree | 39b0fba93850658453c1f8ff0228e8774c6f484b | |
parent | 2ba65d517b91ebb30f4f2a88f1e1beeabd8d8ee6 (diff) |
V4L/DVB (6964): tda18271: document debug level and configuration parameters
Document debug level module options and
tda18271_config attach-time parameters.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | drivers/media/dvb/frontends/tda18271-fe.c | 3 | ||||
-rw-r--r-- | drivers/media/dvb/frontends/tda18271.h | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/tda18271-fe.c b/drivers/media/dvb/frontends/tda18271-fe.c index a02d6404f755..55c17fc22275 100644 --- a/drivers/media/dvb/frontends/tda18271-fe.c +++ b/drivers/media/dvb/frontends/tda18271-fe.c | |||
@@ -24,7 +24,8 @@ | |||
24 | 24 | ||
25 | int tda18271_debug; | 25 | int tda18271_debug; |
26 | module_param_named(debug, tda18271_debug, int, 0644); | 26 | module_param_named(debug, tda18271_debug, int, 0644); |
27 | MODULE_PARM_DESC(debug, "set debug level (info=1, map=2, reg=4 (or-able))"); | 27 | MODULE_PARM_DESC(debug, "set debug level " |
28 | "(info=1, map=2, reg=4, adv=8 (or-able))"); | ||
28 | 29 | ||
29 | /*---------------------------------------------------------------------*/ | 30 | /*---------------------------------------------------------------------*/ |
30 | 31 | ||
diff --git a/drivers/media/dvb/frontends/tda18271.h b/drivers/media/dvb/frontends/tda18271.h index 4fa3d6ab6216..9ccfa6e8b5a9 100644 --- a/drivers/media/dvb/frontends/tda18271.h +++ b/drivers/media/dvb/frontends/tda18271.h | |||
@@ -52,7 +52,10 @@ enum tda18271_i2c_gate { | |||
52 | }; | 52 | }; |
53 | 53 | ||
54 | struct tda18271_config { | 54 | struct tda18271_config { |
55 | /* override default if freq / std settings (optional) */ | ||
55 | struct tda18271_std_map *std_map; | 56 | struct tda18271_std_map *std_map; |
57 | |||
58 | /* use i2c gate provided by analog or digital demod */ | ||
56 | enum tda18271_i2c_gate gate; | 59 | enum tda18271_i2c_gate gate; |
57 | }; | 60 | }; |
58 | 61 | ||