diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-05-19 12:08:47 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-05-19 12:08:47 -0300 |
commit | 4cac5256e71021e5bd26eff40f465a6f41fe4b1a (patch) | |
tree | fc4404c714ea4579b950e4b783c6ab5b14427d50 /linux/drivers/media/dvb/frontends | |
parent | f768c8f3a921624366296efddaecf6f962ecdbe8 (diff) | |
download | mediapointer-dvb-s2-4cac5256e71021e5bd26eff40f465a6f41fe4b1a.tar.gz mediapointer-dvb-s2-4cac5256e71021e5bd26eff40f465a6f41fe4b1a.tar.bz2 |
Fix broken DVB drivers caused by a recent merge
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends')
-rw-r--r-- | linux/drivers/media/dvb/frontends/mt352.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/drivers/media/dvb/frontends/mt352.c b/linux/drivers/media/dvb/frontends/mt352.c index abd638349..5de7376c9 100644 --- a/linux/drivers/media/dvb/frontends/mt352.c +++ b/linux/drivers/media/dvb/frontends/mt352.c @@ -289,15 +289,15 @@ static int mt352_set_parameters(struct dvb_frontend* fe, if (state->config.no_tuner) { if (fe->ops.tuner_ops.set_params) { fe->ops.tuner_ops.set_params(fe, param); - if (fe->ops->i2c_gate_ctrl) - fe->ops->i2c_gate_ctrl(fe, 0); + if (fe->ops.i2c_gate_ctrl) + fe->ops.i2c_gate_ctrl(fe, 0); } mt352_write(fe, buf, 8); mt352_write(fe, fsm_go, 2); } else { - if (fe->ops->tuner_ops.calc_regs) { - fe->ops->tuner_ops.calc_regs(fe, param, buf+8, 5); + if (fe->ops.tuner_ops.calc_regs) { + fe->ops.tuner_ops.calc_regs(fe, param, buf+8, 5); buf[8] <<= 1; mt352_write(fe, buf, sizeof(buf)); mt352_write(fe, tuner_go, 2); |