Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

[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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -891,7 +891,7 @@ static int xc2028_signal(struct dvb_frontend *fe, u16 *strength)

	/* Frequency is locked */
	if (frq_lock == 1)
		signal = 32768;
		signal = 1 << 11;

	/* Get SNR of the video signal */
	rc = xc2028_get_reg(priv, 0x0040, &signal);