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

Commit b5e2b97b authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

[media] r820t: put it into automatic gain mode



Currently, it is putting it on manual mode.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
Tested-by: default avatarAntti Palosaari <crope@iki.fi>
parent f2658894
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1216,12 +1216,12 @@ static int r820t_set_gain_mode(struct r820t_priv *priv,
			return rc;
	} else {
		/* LNA */
		rc = r820t_write_reg_mask(priv, 0x05, 0, 0xef);
		rc = r820t_write_reg_mask(priv, 0x05, 0, 0x10);
		if (rc < 0)
			return rc;

		/* Mixer */
		rc = r820t_write_reg_mask(priv, 0x07, 0x10, 0xef);
		rc = r820t_write_reg_mask(priv, 0x07, 0x10, 0x10);
		if (rc < 0)
			return rc;

@@ -1261,7 +1261,7 @@ static int generic_set_freq(struct dvb_frontend *fe,
	if (rc < 0)
		goto err;

	rc = r820t_set_gain_mode(priv, true, 0);
	rc = r820t_set_gain_mode(priv, false, 0);
	if (rc < 0)
		goto err;