summaryrefslogtreecommitdiff
path: root/drivers/media/video/tda8290.c
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2007-10-21 13:40:56 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-01-25 19:01:07 -0200
commit1dde7a4fa2b197d298c3f1b97a7f78fd1c3a1bda (patch)
treed197c9d1fc5fc0d4ad99481621a9fd99b567e27b /drivers/media/video/tda8290.c
parent5bea1cd3871351d70cc7624af138f8aa68b7be77 (diff)
V4L/DVB (6436): tuner: move analog_tuner_ops into dvb_frontend_ops
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Reviewed-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/tda8290.c')
-rw-r--r--drivers/media/video/tda8290.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/video/tda8290.c b/drivers/media/video/tda8290.c
index a38ed9db6403..da5e5a8169fa 100644
--- a/drivers/media/video/tda8290.c
+++ b/drivers/media/video/tda8290.c
@@ -519,7 +519,7 @@ static void tda829x_release(struct tuner *t)
t->priv = NULL;
}
-static struct tuner_operations tda8290_tuner_ops = {
+static struct analog_tuner_ops tda8290_tuner_ops = {
.set_tv_freq = tda8290_set_freq,
.set_radio_freq = tda8290_set_freq,
.has_signal = tda8290_has_signal,
@@ -527,7 +527,7 @@ static struct tuner_operations tda8290_tuner_ops = {
.release = tda829x_release,
};
-static struct tuner_operations tda8295_tuner_ops = {
+static struct analog_tuner_ops tda8295_tuner_ops = {
.set_tv_freq = tda8295_set_freq,
.set_radio_freq = tda8295_set_freq,
.has_signal = tda8295_has_signal,
@@ -612,7 +612,7 @@ int tda8290_attach(struct tuner *t)
if (t->fe.ops.tuner_ops.sleep)
t->fe.ops.tuner_ops.sleep(&t->fe);
- memcpy(&t->ops, &tda8290_tuner_ops, sizeof(struct tuner_operations));
+ t->fe.ops.analog_demod_ops = &tda8290_tuner_ops;
tuner_info("type set to %s\n", t->i2c.name);
@@ -703,7 +703,7 @@ int tda8295_attach(struct tuner *t)
priv->tda827x_ver |= 1; /* signifies 8295 vs 8290 */
tuner_info("type set to %s\n", t->i2c.name);
- memcpy(&t->ops, &tda8295_tuner_ops, sizeof(struct tuner_operations));
+ t->fe.ops.analog_demod_ops = &tda8295_tuner_ops;
priv->cfg.tda827x_lpsel = 0;
t->mode = V4L2_TUNER_ANALOG_TV;