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

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

[media] mxl5007t: use DVBv5 parameters on set_params()



Instead of using DVBv3 parameters, rely on DVBv5 parameters to
set the tuner.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 1b750d09
Loading
Loading
Loading
Loading
+24 −27
Original line number Diff line number Diff line
@@ -619,44 +619,42 @@ static int mxl5007t_get_status(struct dvb_frontend *fe, u32 *status)
static int mxl5007t_set_params(struct dvb_frontend *fe,
			       struct dvb_frontend_parameters *params)
{
	struct dtv_frontend_properties *c = &fe->dtv_property_cache;
	u32 delsys = c->delivery_system;
	struct mxl5007t_state *state = fe->tuner_priv;
	enum mxl5007t_bw_mhz bw;
	enum mxl5007t_mode mode;
	int ret;
	u32 freq = params->frequency;
	u32 freq = c->frequency;
	u32 band = BANDWIDTH_6_MHZ;

	if (fe->ops.info.type == FE_ATSC) {
		switch (params->u.vsb.modulation) {
		case VSB_8:
		case VSB_16:
	switch (delsys) {
	case SYS_ATSC:
		mode = MxL_MODE_ATSC;
		bw = MxL_BW_6MHz;
		break;
		case QAM_64:
		case QAM_256:
	case SYS_DVBC_ANNEX_B:
		mode = MxL_MODE_CABLE;
			break;
		default:
			mxl_err("modulation not set!");
			return -EINVAL;
		}
		bw = MxL_BW_6MHz;
	} else if (fe->ops.info.type == FE_OFDM) {
		switch (params->u.ofdm.bandwidth) {
		case BANDWIDTH_6_MHZ:
		break;
	case SYS_DVBT:
	case SYS_DVBT2:
		mode = MxL_MODE_DVBT;
		switch (c->bandwidth_hz) {
		case 6000000:
			bw = MxL_BW_6MHz;
			break;
		case BANDWIDTH_7_MHZ:
		case 7000000:
			bw = MxL_BW_7MHz;
			break;
		case BANDWIDTH_8_MHZ:
			band = BANDWIDTH_7_MHZ;
		case 8000000:
			bw = MxL_BW_8MHz;
			break;
			band = BANDWIDTH_8_MHZ;
		default:
			mxl_err("bandwidth not set!");
			return -EINVAL;
		}
		mode = MxL_MODE_DVBT;
	} else {
		break;
	default:
		mxl_err("modulation type not supported!");
		return -EINVAL;
	}
@@ -675,8 +673,7 @@ static int mxl5007t_set_params(struct dvb_frontend *fe,
		goto fail;

	state->frequency = freq;
	state->bandwidth = (fe->ops.info.type == FE_OFDM) ?
		params->u.ofdm.bandwidth : 0;
	state->bandwidth = band;
fail:
	mutex_unlock(&state->lock);