diff options
author | Patrick Boettcher <pb@linuxtv.org> | 2005-07-07 17:57:44 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-07 18:23:55 -0700 |
commit | f46dbb050b5c7585c34b9ef717d81d6fee883f9b (patch) | |
tree | 8b399f437f36b36bfbd79b5369b14a38b2eed7eb /drivers/media/dvb/frontends/cx22702.h | |
parent | f03cbea36ab9412dcea58e953be4933b36c9b7be (diff) | |
download | linux-next-f46dbb050b5c7585c34b9ef717d81d6fee883f9b.tar.gz |
[PATCH] dvb: frontend: cx22702: support for cxusb
Add .get_tune_settings callback (min_delay_ms = 1sec) and output_mode-field
(parallel/serial) to support cxusb; minor cleanups.
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
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/media/dvb/frontends/cx22702.h')
-rw-r--r-- | drivers/media/dvb/frontends/cx22702.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/cx22702.h b/drivers/media/dvb/frontends/cx22702.h index 559fdb906669..11f86806756e 100644 --- a/drivers/media/dvb/frontends/cx22702.h +++ b/drivers/media/dvb/frontends/cx22702.h @@ -35,6 +35,11 @@ struct cx22702_config /* the demodulator's i2c address */ u8 demod_address; + /* serial/parallel output */ +#define CX22702_PARALLEL_OUTPUT 0 +#define CX22702_SERIAL_OUTPUT 1 + u8 output_mode; + /* PLL maintenance */ u8 pll_address; struct dvb_pll_desc *pll_desc; |