diff options
author | Mauro Carvalho Chehab <devnull@localhost> | 2005-07-15 12:40:23 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <devnull@localhost> | 2005-07-15 12:40:23 +0000 |
commit | c459e28d9ed3d54801ac47f874335889688981f8 (patch) | |
tree | 6f846557fbd9b84babad2ceacaa6fa7c0743396c /linux/drivers | |
parent | b239a19dc21542e9e49303f2104c8aa8497da923 (diff) | |
download | mediapointer-dvb-s2-c459e28d9ed3d54801ac47f874335889688981f8.tar.gz mediapointer-dvb-s2-c459e28d9ed3d54801ac47f874335889688981f8.tar.bz2 |
* cx88-dvb.c:
- The output_mode needs to be set for the Hauppauge Nova-T DVB-T
(cx88-dvb.c) for versions after 2.6.12.
Signed-off-by: Patrick Boettcher <patrick.boettcher@desy.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-dvb.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-dvb.c b/linux/drivers/media/video/cx88/cx88-dvb.c index 00ca40a12..0dae9ff6a 100644 --- a/linux/drivers/media/video/cx88/cx88-dvb.c +++ b/linux/drivers/media/video/cx88/cx88-dvb.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-dvb.c,v 1.42 2005/07/12 15:44:55 mkrufky Exp $ + * $Id: cx88-dvb.c,v 1.43 2005/07/15 12:40:23 mchehab Exp $ * * device driver for Conexant 2388x based TV cards * MPEG Transport Stream (DVB) routines @@ -166,12 +166,18 @@ static int mt352_pll_set(struct dvb_frontend* fe, static struct mt352_config dvico_fusionhdtv = { .demod_address = 0x0F, +#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,12) + .output_mode = CX22702_SERIAL_OUTPUT, +#endif .demod_init = dvico_fusionhdtv_demod_init, .pll_set = mt352_pll_set, }; static struct mt352_config dntv_live_dvbt_config = { .demod_address = 0x0f, +#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,12) + .output_mode = CX22702_SERIAL_OUTPUT, +#endif .demod_init = dntv_live_dvbt_demod_init, .pll_set = mt352_pll_set, }; |