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

Commit ca341e4d authored by Jose Alberto Reguero's avatar Jose Alberto Reguero Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (9272): mxl5005s: Bug fix stopped DVB-T from working the second time around.



Jose reported:

I am using a Avermedia Volar X with af9015 driver(DVB-T).

The first time you use the card, first call reconfigure with MXL_QAM,
and when tune DVB-T it calls reconfigure with MXL_DVBT. But if you close
the frontend and open again, it calls reconfigure with MXL_QAM, but not
call reconfigure with MXL_DVBT because state->current_mode don't change
(is MXL_DVBT).

Signed-off-by: default avatarJose Alberto Reguero <jareguero@telefonica.net>
Signed-off-by: default avatarSteven Toth <stoth@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 96b7a1a8
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -3912,7 +3912,10 @@ static int mxl5005s_writeregs(struct dvb_frontend *fe, u8 *addrtable,


static int mxl5005s_init(struct dvb_frontend *fe)
static int mxl5005s_init(struct dvb_frontend *fe)
{
{
	struct mxl5005s_state *state = fe->tuner_priv;

	dprintk(1, "%s()\n", __func__);
	dprintk(1, "%s()\n", __func__);
	state->current_mode = MXL_QAM;
	return mxl5005s_reconfigure(fe, MXL_QAM, MXL5005S_BANDWIDTH_6MHZ);
	return mxl5005s_reconfigure(fe, MXL_QAM, MXL5005S_BANDWIDTH_6MHZ);
}
}


@@ -4094,7 +4097,6 @@ struct dvb_frontend *mxl5005s_attach(struct dvb_frontend *fe,
	state->frontend = fe;
	state->frontend = fe;
	state->config = config;
	state->config = config;
	state->i2c = i2c;
	state->i2c = i2c;
	state->current_mode = MXL_QAM;


	printk(KERN_INFO "MXL5005S: Attached at address 0x%02x\n",
	printk(KERN_INFO "MXL5005S: Attached at address 0x%02x\n",
		config->i2c_address);
		config->i2c_address);