diff options
author | Gerd Knorr <devnull@localhost> | 2004-05-24 12:58:12 +0000 |
---|---|---|
committer | Gerd Knorr <devnull@localhost> | 2004-05-24 12:58:12 +0000 |
commit | 2db63c78105ff5505f15f1d2109b365b0064959b (patch) | |
tree | abc986c8c9b09e5dd852261cfb0d620c43021899 /linux/drivers/media/video | |
parent | 57411a455155b5abaa808dd9616e10057882500e (diff) | |
download | mediapointer-dvb-s2-2db63c78105ff5505f15f1d2109b365b0064959b.tar.gz mediapointer-dvb-s2-2db63c78105ff5505f15f1d2109b365b0064959b.tar.bz2 |
- bttv: modtec tuner detection updated (by Christopher Hill).
Diffstat (limited to 'linux/drivers/media/video')
-rw-r--r-- | linux/drivers/media/video/bttv-cards.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux/drivers/media/video/bttv-cards.c b/linux/drivers/media/video/bttv-cards.c index 18ac21ba2..b74a45614 100644 --- a/linux/drivers/media/video/bttv-cards.c +++ b/linux/drivers/media/video/bttv-cards.c @@ -2701,6 +2701,10 @@ static void modtec_eeprom(struct bttv *btv) btv->tuner_type=TUNER_ALPS_TSBB5_PAL_I; printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n", btv->c.nr,&eeprom_data[0x1e]); + } else if (strncmp(&(eeprom_data[0x1e]),"Philips FM1246",14) ==0) { + btv->tuner_type=TUNER_PHILIPS_NTSC; + printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n", + btv->c.nr,&eeprom_data[0x1e]); } else { printk("bttv%d: Modtec: Unknown TunerString: %s\n", btv->c.nr,&eeprom_data[0x1e]); |