From: Malcolm Priestley Date: Sat, 28 Aug 2010 21:18:45 +0000 (-0300) Subject: V4L/DVB: STV0288 Incorrect bit sample for Vitterbi status X-Git-Tag: firefly_0821_release~7613^2~3587^2~457 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=be96624a38e6de619603b5741a39e715eb44227c;p=firefly-linux-kernel-4.4.55.git V4L/DVB: STV0288 Incorrect bit sample for Vitterbi status bit 3(LK) indicates that the Vstatus is locked. Currently using bit 7(CF) which is usually present, results in early aborted search in FEC_AUTO and missing channels. Signed-off-by: Malcolm Priestley Cc: Igor M. Liplianin Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/dvb/frontends/stv0288.c b/drivers/media/dvb/frontends/stv0288.c index 743989dbb18d..89e8db6ed841 100644 --- a/drivers/media/dvb/frontends/stv0288.c +++ b/drivers/media/dvb/frontends/stv0288.c @@ -486,7 +486,7 @@ static int stv0288_set_frontend(struct dvb_frontend *fe, tda[2] = 0x0; /* CFRL */ for (tm = -6; tm < 7;) { /* Viterbi status */ - if (stv0288_readreg(state, 0x24) & 0x80) + if (stv0288_readreg(state, 0x24) & 0x8) break; tda[2] += 40;