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

V4L/DVB (3851): Convert tda8083 to refactored tuner code

Convert to tuner_ops calls.
Remove pll function pointers from structure.
Remove unneeded tuner calls.
Signed-off-by: default avatarAndrew de Quincey <adq_dvb@lidskialf.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 58ac7d36
...@@ -293,7 +293,11 @@ static int tda8083_set_frontend(struct dvb_frontend* fe, struct dvb_frontend_par ...@@ -293,7 +293,11 @@ static int tda8083_set_frontend(struct dvb_frontend* fe, struct dvb_frontend_par
{ {
struct tda8083_state* state = fe->demodulator_priv; struct tda8083_state* state = fe->demodulator_priv;
state->config->pll_set(fe, p); if (fe->ops->tuner_ops.set_params) {
fe->ops->tuner_ops.set_params(fe, p);
if (fe->ops->i2c_gate_ctrl) fe->ops->i2c_gate_ctrl(fe, 0);
}
tda8083_set_inversion (state, p->inversion); tda8083_set_inversion (state, p->inversion);
tda8083_set_fec (state, p->u.qpsk.fec_inner); tda8083_set_fec (state, p->u.qpsk.fec_inner);
tda8083_set_symbolrate (state, p->u.qpsk.symbol_rate); tda8083_set_symbolrate (state, p->u.qpsk.symbol_rate);
...@@ -334,8 +338,6 @@ static int tda8083_init(struct dvb_frontend* fe) ...@@ -334,8 +338,6 @@ static int tda8083_init(struct dvb_frontend* fe)
for (i=0; i<44; i++) for (i=0; i<44; i++)
tda8083_writereg (state, i, tda8083_init_tab[i]); tda8083_writereg (state, i, tda8083_init_tab[i]);
if (state->config->pll_init) state->config->pll_init(fe);
tda8083_writereg (state, 0x00, 0x3c); tda8083_writereg (state, 0x00, 0x3c);
tda8083_writereg (state, 0x00, 0x04); tda8083_writereg (state, 0x00, 0x04);
......
...@@ -33,10 +33,6 @@ struct tda8083_config ...@@ -33,10 +33,6 @@ struct tda8083_config
{ {
/* the demodulator's i2c address */ /* the demodulator's i2c address */
u8 demod_address; u8 demod_address;
/* PLL maintenance */
int (*pll_init)(struct dvb_frontend* fe);
int (*pll_set)(struct dvb_frontend* fe, struct dvb_frontend_parameters* params);
}; };
extern struct dvb_frontend* tda8083_attach(const struct tda8083_config* config, extern struct dvb_frontend* tda8083_attach(const struct tda8083_config* config,
......
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