diff options
author | Thomas Kaiser <linux-dvb@kaiser-linux.li> | 2006-11-22 16:15:19 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-12-10 06:05:20 -0500 |
commit | 9abec6189aa8b6659222544bf893158fc96e8822 (patch) | |
tree | 23c55e8cdd10f97f7bdb2fb862eb7099e1004443 /drivers/media/dvb/ttpci | |
parent | 59236d46dab429646b023026ac92d9e8c732c18a (diff) |
V4L/DVB (4883): Fix TD1316 tuner for DVBC
If your device is using the philips tda1316 tuner, i think there is a
problem in setting the correct Band. 162 MHz and above should be band 2
(Mid-Band). But in dvbc_philips_tdm1316l_tuner_set_params band 1 is set
for frequencies below 200 MHz.
Signed-off-by: Thomas Kaiser <linux-dvb@kaiser-linux.li>
Signed-off-by: Andrew de Quincey <adq_dvb@lidskialf.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/ttpci')
-rw-r--r-- | drivers/media/dvb/ttpci/budget-ci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/ttpci/budget-ci.c b/drivers/media/dvb/ttpci/budget-ci.c index 83a1c5f44a0a..a68f5bf01259 100644 --- a/drivers/media/dvb/ttpci/budget-ci.c +++ b/drivers/media/dvb/ttpci/budget-ci.c | |||
@@ -946,7 +946,7 @@ static int dvbc_philips_tdm1316l_tuner_set_params(struct dvb_frontend *fe, struc | |||
946 | band = 1; | 946 | band = 1; |
947 | } else if (tuner_frequency < 200000000) { | 947 | } else if (tuner_frequency < 200000000) { |
948 | cp = 6; | 948 | cp = 6; |
949 | band = 1; | 949 | band = 2; |
950 | } else if (tuner_frequency < 290000000) { | 950 | } else if (tuner_frequency < 290000000) { |
951 | cp = 3; | 951 | cp = 3; |
952 | band = 2; | 952 | band = 2; |