[media] tuner-xc2028: Better report signal strength

Fix lock bit to better indicate signal strength, from 4096 to
65535.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Mauro Carvalho Chehab 2011-11-29 13:33:52 -03:00
parent 15a295ec31
commit 884b0515dc
1 changed files with 1 additions and 1 deletions

View File

@ -891,7 +891,7 @@ static int xc2028_signal(struct dvb_frontend *fe, u16 *strength)
/* Frequency is locked */ /* Frequency is locked */
if (frq_lock == 1) if (frq_lock == 1)
signal = 32768; signal = 1 << 11;
/* Get SNR of the video signal */ /* Get SNR of the video signal */
rc = xc2028_get_reg(priv, 0x0040, &signal); rc = xc2028_get_reg(priv, 0x0040, &signal);