diff options
author | Mauro Carvalho Chehab <devnull@localhost> | 2005-05-18 01:30:51 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <devnull@localhost> | 2005-05-18 01:30:51 +0000 |
commit | 666b643981f41704cc2d6da4a0e3226c2c95209f (patch) | |
tree | be928bda75503dbc4c4070e743b2eb759e5dc562 /linux/drivers | |
parent | 66b37ff828afed808bddb816a2edfdbe3fc8f794 (diff) | |
download | mediapointer-dvb-s2-666b643981f41704cc2d6da4a0e3226c2c95209f.tar.gz mediapointer-dvb-s2-666b643981f41704cc2d6da4a0e3226c2c95209f.tar.bz2 |
Mauro Chehab (mchehab at brturbo.com.br): Added support for some Ymec
tuners used on Pixelview Cards. There are some docs about it on
http://www.ymec.com.tw/tuner.htm.
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/video/tuner-simple.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/linux/drivers/media/video/tuner-simple.c b/linux/drivers/media/video/tuner-simple.c index d3e1ffac2..c602ae39f 100644 --- a/linux/drivers/media/video/tuner-simple.c +++ b/linux/drivers/media/video/tuner-simple.c @@ -1,5 +1,5 @@ /* - * $Id: tuner-simple.c,v 1.10 2005/03/08 08:38:00 kraxel Exp $ + * $Id: tuner-simple.c,v 1.11 2005/05/18 01:30:51 mchehab Exp $ * * i2c tv tuner chip device driver * controls all those simple 4-control-bytes style tuners. @@ -213,6 +213,11 @@ static struct tunertype tuners[] = { { "Philips FQ1236A MK4", Philips, NTSC, 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732 }, + /* Should work for TVF8531MF, TVF8831MF, TVF8731MF */ + { "Ymec TVision TVF-8531MF", TEMIC, NTSC, + 16*160.00,16*454.00,0xa0,0x90,0x30,0x8e,732}, + { "Ymec TVision TVF-5533MF", TEMIC, NTSC, + 16*160.00,16*454.00,0x01,0x02,0x04,0x8e,732}, }; unsigned const int tuner_count = ARRAY_SIZE(tuners); |