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

Commit 0349471b authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

[media] dvb: replace SYS_DVBC_ANNEX_AC by the right delsys



SYS_DVBC_ANNEX_AC is an alias for SYS_DVBC_ANNEX_A. However,
the first one is incorrect, as not all devices support both.
So, replace its occurrences by the proper value (either
SYS_DVBC_ANNEX_A or both SYS_DVBC_ANNEX_A and SYS_DVBC_ANNEX_C).

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 7b0962d3
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -203,7 +203,8 @@ static int tda18212_set_params(struct dvb_frontend *fe,
			goto error;
		}
		break;
	case SYS_DVBC_ANNEX_AC:
	case SYS_DVBC_ANNEX_A:
	case SYS_DVBC_ANNEX_C:
		if_khz = priv->cfg->if_dvbc;
		i = DVBC_8;
		break;
+1 −1
Original line number Diff line number Diff line
@@ -1242,7 +1242,7 @@ static void dtv_set_default_delivery_caps(const struct dvb_frontend *fe, struct
			p->u.buffer.data[ncaps++] = SYS_TURBO;
		break;
	case FE_QAM:
		p->u.buffer.data[ncaps++] = SYS_DVBC_ANNEX_AC;
		p->u.buffer.data[ncaps++] = SYS_DVBC_ANNEX_A;
		break;
	case FE_OFDM:
		p->u.buffer.data[ncaps++] = SYS_DVBT;
+2 −2
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ int cxd2820r_set_frontend_c(struct dvb_frontend *fe,
	if (fe->ops.tuner_ops.set_params)
		fe->ops.tuner_ops.set_params(fe, params);

	if (priv->delivery_system !=  SYS_DVBC_ANNEX_AC) {
	if (priv->delivery_system !=  SYS_DVBC_ANNEX_A) {
		for (i = 0; i < ARRAY_SIZE(tab); i++) {
			ret = cxd2820r_wr_reg_mask(priv, tab[i].reg,
				tab[i].val, tab[i].mask);
@@ -68,7 +68,7 @@ int cxd2820r_set_frontend_c(struct dvb_frontend *fe,
		}
	}

	priv->delivery_system = SYS_DVBC_ANNEX_AC;
	priv->delivery_system = SYS_DVBC_ANNEX_A;
	priv->ber_running = 0; /* tune stops BER counter */

	/* program IF frequency */