diff options
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-dvb.c | 8 | ||||
-rw-r--r-- | v4l/ChangeLog | 9 |
2 files changed, 16 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, }; diff --git a/v4l/ChangeLog b/v4l/ChangeLog index fe44f5f8e..8cc844620 100644 --- a/v4l/ChangeLog +++ b/v4l/ChangeLog @@ -1,3 +1,12 @@ +2005-07-15 12:35 mchehab + * 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> + 2005-07-14 03:02 mchehab * tea5767.c: - Newer tea autodetection code is not stable. Restaured old |