From: Johannes Stezenbach Date: Fri, 8 Jul 2005 00:57:58 +0000 (-0700) Subject: [PATCH] dvb: ttpci: budget-av / tu1216 fix for QAM128 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=eef5764d6806e29a768a632abce113c15264c5d6;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git [PATCH] dvb: ttpci: budget-av / tu1216 fix for QAM128 Fix for QAM128 in VHF band suggested by Timo Helkiƶ. Signed-off-by: Johannes Stezenbach Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/media/dvb/ttpci/budget-av.c b/drivers/media/dvb/ttpci/budget-av.c index 9e65bfd59c42..b65f4b0a481f 100644 --- a/drivers/media/dvb/ttpci/budget-av.c +++ b/drivers/media/dvb/ttpci/budget-av.c @@ -570,9 +570,9 @@ static int philips_cu1216_pll_set(struct dvb_frontend *fe, struct dvb_frontend_p buf[0] = (div >> 8) & 0x7f; buf[1] = div & 0xff; - buf[2] = 0x8e; - buf[3] = (params->frequency < 174500000 ? 0xa1 : - params->frequency < 454000000 ? 0x92 : 0x34); + buf[2] = 0x86; + buf[3] = (params->frequency < 150000000 ? 0x01 : + params->frequency < 445000000 ? 0x02 : 0x04); if (i2c_transfer(&budget->i2c_adap, &msg, 1) != 1) return -EIO;