Commit 884b0515 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] tuner-xc2028: Better report signal strength

Fix lock bit to better indicate signal strength, from 4096 to
65535.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 15a295ec
...@@ -891,7 +891,7 @@ static int xc2028_signal(struct dvb_frontend *fe, u16 *strength) ...@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment