diff options
author | Ricardo Cerqueira <devnull@localhost> | 2005-10-31 13:39:36 +0000 |
---|---|---|
committer | Ricardo Cerqueira <devnull@localhost> | 2005-10-31 13:39:36 +0000 |
commit | bcc43f90a335f54ea22f57ed8d2d03d18d5b5f3a (patch) | |
tree | 950d7b3ec7612dd28497ef53b7ebf6f1480373a2 | |
parent | 897b83cede00f69f9d44a8490b49b61d21b49308 (diff) | |
download | mediapointer-dvb-s2-bcc43f90a335f54ea22f57ed8d2d03d18d5b5f3a.tar.gz mediapointer-dvb-s2-bcc43f90a335f54ea22f57ed8d2d03d18d5b5f3a.tar.bz2 |
- Work-around to allow hybrid DVB card to autoload the tda9887
tuner module
Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org>
-rw-r--r-- | linux/drivers/media/video/bttv-cards.c | 5 | ||||
-rw-r--r-- | v4l/ChangeLog | 20 |
2 files changed, 24 insertions, 1 deletions
diff --git a/linux/drivers/media/video/bttv-cards.c b/linux/drivers/media/video/bttv-cards.c index dec00f254..9af2034fe 100644 --- a/linux/drivers/media/video/bttv-cards.c +++ b/linux/drivers/media/video/bttv-cards.c @@ -1,5 +1,5 @@ /* - $Id: bttv-cards.c,v 1.97 2005/10/27 20:15:48 mchehab Exp $ + $Id: bttv-cards.c,v 1.98 2005/10/31 13:39:36 rmcc Exp $ bttv-cards.c @@ -3438,6 +3438,9 @@ void __devinit bttv_init_card2(struct bttv *btv) if (0 == tda9887 && 0 == bttv_tvcards[btv->c.type].has_dvb && bttv_I2CRead(btv, I2C_TDA9887, "TDA9887") >=0) tda9887 = 1; + /* Hybrid DVB card, DOES have a tda9887 */ + if (btv->c.type == BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE) + tda9887 = 1; if((btv->tuner_type == TUNER_PHILIPS_FM1216ME_MK3) || (btv->tuner_type == TUNER_PHILIPS_FM1236_MK3) || (btv->tuner_type == TUNER_PHILIPS_FM1256_IH3) || diff --git a/v4l/ChangeLog b/v4l/ChangeLog index 1c3975dc6..72c750449 100644 --- a/v4l/ChangeLog +++ b/v4l/ChangeLog @@ -1,3 +1,23 @@ +2005-10-31 13:34 rmcc + + * ../linux/drivers/media/video/bttv-cards.c: + + - Work-around to allow hybrid DVB card to autoload the tda9887 + tuner module + + Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> + +2005-10-31 13:32 rmcc + + * ../linux/drivers/media/video/bttv-i2c.c: + * ../linux/drivers/media/video/tuner-core.c: + + - Rollback recent i2c change to solve tuner detection breakage + - Fix in tuner-core to prevent setting the tuner type for an + already configured tuner + + Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> + 2005-10-31 12:52 mkrufky * ../linux/drivers/media/video/cx88/cx88-tvaudio.c: |