summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/frontends/tda8083.c
diff options
context:
space:
mode:
authorAndrew de Quincey <adq_dvb@lidskialf.net>2006-04-18 21:47:09 +0100
committerAndrew de Quincey <adq_dvb@lidskialf.net>2006-04-18 21:47:09 +0100
commitf9378e87cce2131f14020bac98334a1c92d71c83 (patch)
treecd311ae833dc571ce3cf0249031ae6360c0b5229 /linux/drivers/media/dvb/frontends/tda8083.c
parenta66d7de8bc7a3f03f0996b55a783a5b54773022d (diff)
downloadmediapointer-dvb-s2-f9378e87cce2131f14020bac98334a1c92d71c83.tar.gz
mediapointer-dvb-s2-f9378e87cce2131f14020bac98334a1c92d71c83.tar.bz2
Convert tda8083 to refactored tuner code
From: Andrew de Quincey <adq_dvb@lidskialf.net> Convert to tuner_ops calls. Remove pll function pointers from structure. Remove unneeded tuner calls. Signed-off-by: Andrew de Quincey <adq_dvb@lidskialf.net>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/tda8083.c')
-rw-r--r--linux/drivers/media/dvb/frontends/tda8083.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/linux/drivers/media/dvb/frontends/tda8083.c b/linux/drivers/media/dvb/frontends/tda8083.c
index 91baa9ced..0aeaec890 100644
--- a/linux/drivers/media/dvb/frontends/tda8083.c
+++ b/linux/drivers/media/dvb/frontends/tda8083.c
@@ -293,7 +293,11 @@ static int tda8083_set_frontend(struct dvb_frontend* fe, struct dvb_frontend_par
{
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_fec (state, p->u.qpsk.fec_inner);
tda8083_set_symbolrate (state, p->u.qpsk.symbol_rate);
@@ -334,8 +338,6 @@ static int tda8083_init(struct dvb_frontend* fe)
for (i=0; i<44; 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, 0x04);