Skip to content

Commit

Permalink
[media] m88rs2000: LNB voltage control implemented
Browse files Browse the repository at this point in the history
Trival patch to get it working with my cards stuff.

Signed-off-by: Igor M. Liplianin <liplianin@me.by>
Acked-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Igor M. Liplianin authored and Mauro Carvalho Chehab committed May 20, 2012
1 parent 6ae009a commit 38431a9
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions drivers/media/dvb/frontends/m88rs2000.c
Original file line number Diff line number Diff line change
Expand Up @@ -416,9 +416,25 @@ static int m88rs2000_tab_set(struct m88rs2000_state *state,

static int m88rs2000_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t volt)
{
deb_info("%s: %s\n", __func__,
volt == SEC_VOLTAGE_13 ? "SEC_VOLTAGE_13" :
volt == SEC_VOLTAGE_18 ? "SEC_VOLTAGE_18" : "??");
struct m88rs2000_state *state = fe->demodulator_priv;
u8 data;

data = m88rs2000_demod_read(state, 0xb2);
data |= 0x03; /* bit0 V/H, bit1 off/on */

switch (volt) {
case SEC_VOLTAGE_18:
data &= ~0x03;
break;
case SEC_VOLTAGE_13:
data &= ~0x03;
data |= 0x01;
break;
case SEC_VOLTAGE_OFF:
break;
}

m88rs2000_demod_write(state, 0xb2, data);

return 0;
}
Expand Down

0 comments on commit 38431a9

Please sign in to comment.