From: Thomas Kaiser Date: Wed, 22 Nov 2006 21:15:19 +0000 (-0300) Subject: V4L/DVB (4883): Fix TD1316 tuner for DVBC X-Git-Tag: v2.6.20-rc1~15^2~38^2~53 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9abec6189aa8b6659222544bf893158fc96e8822;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git 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 Signed-off-by: Andrew de Quincey Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/dvb/ttpci/budget-ci.c b/drivers/media/dvb/ttpci/budget-ci.c index 83a1c5f..a68f5bf 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 band = 1; } else if (tuner_frequency < 200000000) { cp = 6; - band = 1; + band = 2; } else if (tuner_frequency < 290000000) { cp = 3; band = 2;