Commit 086991dd authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

[media] af9033: move code from it913x to af9033

That register is property of demodulator so move it correct place.
Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent d423e108
...@@ -391,6 +391,15 @@ static int af9033_init(struct dvb_frontend *fe) ...@@ -391,6 +391,15 @@ static int af9033_init(struct dvb_frontend *fe)
goto err; goto err;
} }
switch (state->cfg.tuner) {
case AF9033_TUNER_IT9135_60:
case AF9033_TUNER_IT9135_61:
case AF9033_TUNER_IT9135_62:
ret = af9033_wr_reg(state, 0x800000, 0x01);
if (ret < 0)
goto err;
}
state->bandwidth_hz = 0; /* force to program all parameters */ state->bandwidth_hz = 0; /* force to program all parameters */
return 0; return 0;
......
...@@ -145,12 +145,6 @@ static int it913x_init(struct dvb_frontend *fe) ...@@ -145,12 +145,6 @@ static int it913x_init(struct dvb_frontend *fe)
u8 nv[] = {48, 32, 24, 16, 12, 8, 6, 4, 2}; u8 nv[] = {48, 32, 24, 16, 12, 8, 6, 4, 2};
u8 b[2]; u8 b[2];
if (state->chip_ver == 2) {
ret = it913x_wr_reg(state, PRO_DMOD, TRIGGER_OFSM, 0x1);
if (ret < 0)
return -ENODEV;
}
reg = it913x_rd_reg(state, 0xec86); reg = it913x_rd_reg(state, 0xec86);
switch (reg) { switch (reg) {
case 0: case 0:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment