Skip to content

Commit

Permalink
V4L/DVB (8529): mxl5007t: enable _init and _sleep power management fu…
Browse files Browse the repository at this point in the history
…nctionality

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Michael Krufky authored and Mauro Carvalho Chehab committed Jul 27, 2008
1 parent 2a83e4d commit 452a53a
Showing 1 changed file with 34 additions and 8 deletions.
42 changes: 34 additions & 8 deletions drivers/media/common/tuners/mxl5007t.c
Original file line number Diff line number Diff line change
Expand Up @@ -830,27 +830,53 @@ static int mxl5007t_set_analog_params(struct dvb_frontend *fe,
static int mxl5007t_init(struct dvb_frontend *fe)
{
struct mxl5007t_state *state = fe->tuner_priv;
//int ret;
int ret;
u8 d;

mutex_lock(&state->lock);
/* do init */
//fail:

if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 1);

ret = mxl5007t_read_reg(state, 0x05, &d);
if (mxl_fail(ret))
goto fail;

ret = mxl5007t_write_reg(state, 0x05, d | 0x01);
mxl_fail(ret);
fail:
if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 0);

mutex_unlock(&state->lock);

return 0;//ret;
return ret;
}

static int mxl5007t_sleep(struct dvb_frontend *fe)
{
struct mxl5007t_state *state = fe->tuner_priv;
//int ret;
int ret;
u8 d;

mutex_lock(&state->lock);
/* do standby */
//fail:

if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 1);

ret = mxl5007t_read_reg(state, 0x05, &d);
if (mxl_fail(ret))
goto fail;

ret = mxl5007t_write_reg(state, 0x05, d & ~0x01);
mxl_fail(ret);
fail:
if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 0);

mutex_unlock(&state->lock);

return 0;//ret;
return ret;
}

/* ------------------------------------------------------------------------- */
Expand Down

0 comments on commit 452a53a

Please sign in to comment.