Commit 44d92aa7 authored by Andrew de Quincey's avatar Andrew de Quincey Committed by Mauro Carvalho Chehab

V4L/DVB (3865): Convert or51132 to refactored tuner code

Convert to tuner_ops calls.
Remove pll function pointers from structure.
Remove dvb-pll code - done elsewhere now.
Signed-off-by: default avatarAndrew de Quincey <adq_dvb@lidskialf.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 089e9809
...@@ -331,7 +331,6 @@ static int or51132_set_parameters(struct dvb_frontend* fe, ...@@ -331,7 +331,6 @@ static int or51132_set_parameters(struct dvb_frontend* fe,
struct dvb_frontend_parameters *param) struct dvb_frontend_parameters *param)
{ {
int ret; int ret;
u8 buf[4];
struct or51132_state* state = fe->demodulator_priv; struct or51132_state* state = fe->demodulator_priv;
const struct firmware *fw; const struct firmware *fw;
const char *fwname; const char *fwname;
...@@ -384,13 +383,10 @@ static int or51132_set_parameters(struct dvb_frontend* fe, ...@@ -384,13 +383,10 @@ static int or51132_set_parameters(struct dvb_frontend* fe,
or51132_setmode(fe); or51132_setmode(fe);
} }
dvb_pll_configure(state->config->pll_desc, buf, if (fe->ops->tuner_ops.set_params) {
param->frequency, 0); fe->ops->tuner_ops.set_params(fe, param);
dprintk("set_parameters tuner bytes: 0x%02x 0x%02x " if (fe->ops->i2c_gate_ctrl) fe->ops->i2c_gate_ctrl(fe, 0);
"0x%02x 0x%02x\n",buf[0],buf[1],buf[2],buf[3]); }
if (i2c_writebytes(state, state->config->pll_address, buf, 4))
printk(KERN_WARNING "or51132: set_parameters error "
"writing to tuner\n");
/* Set to current mode */ /* Set to current mode */
or51132_setmode(fe); or51132_setmode(fe);
......
...@@ -29,8 +29,6 @@ struct or51132_config ...@@ -29,8 +29,6 @@ struct or51132_config
{ {
/* The demodulator's i2c address */ /* The demodulator's i2c address */
u8 demod_address; u8 demod_address;
u8 pll_address;
struct dvb_pll_desc *pll_desc;
/* Need to set device param for start_dma */ /* Need to set device param for start_dma */
int (*set_ts_params)(struct dvb_frontend* fe, int is_punctured); int (*set_ts_params)(struct dvb_frontend* fe, int is_punctured);
......
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