Skip to content

Commit

Permalink
V4L/DVB (4883): Fix TD1316 tuner for DVBC
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Thomas Kaiser authored and Mauro Carvalho Chehab committed Dec 10, 2006
1 parent 59236d4 commit 9abec61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb/ttpci/budget-ci.c
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,7 @@ static int dvbc_philips_tdm1316l_tuner_set_params(struct dvb_frontend *fe, struc
band = 1;
} else if (tuner_frequency < 200000000) {
cp = 6;
band = 1;
band = 2;
} else if (tuner_frequency < 290000000) {
cp = 3;
band = 2;
Expand Down

0 comments on commit 9abec61

Please sign in to comment.