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

Commit d04ca8df authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab
Browse files

[media] cxd2820r: do not switch to DVB-T when DVB-C fails



Fix another bug introduced by recent multi-frontend to single-frontend
change.

Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent faf27976
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -476,10 +476,10 @@ static enum dvbfe_search cxd2820r_search(struct dvb_frontend *fe)
	dbg("%s: delsys=%d", __func__, fe->dtv_property_cache.delivery_system);

	/* switch between DVB-T and DVB-T2 when tune fails */
	if (priv->last_tune_failed && (priv->delivery_system != SYS_DVBC_ANNEX_A)) {
	if (priv->last_tune_failed) {
		if (priv->delivery_system == SYS_DVBT)
			c->delivery_system = SYS_DVBT2;
		else
		else if (priv->delivery_system == SYS_DVBT2)
			c->delivery_system = SYS_DVBT;
	}