diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-10-21 13:40:56 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 19:01:07 -0200 |
commit | 1dde7a4fa2b197d298c3f1b97a7f78fd1c3a1bda (patch) | |
tree | d197c9d1fc5fc0d4ad99481621a9fd99b567e27b /drivers/media/video/tda9887.c | |
parent | 5bea1cd3871351d70cc7624af138f8aa68b7be77 (diff) | |
download | talos-obmc-linux-1dde7a4fa2b197d298c3f1b97a7f78fd1c3a1bda.tar.gz talos-obmc-linux-1dde7a4fa2b197d298c3f1b97a7f78fd1c3a1bda.zip |
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/tda9887.c')
-rw-r--r-- | drivers/media/video/tda9887.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/tda9887.c b/drivers/media/video/tda9887.c index be5387f11afb..d9bfa812ffe8 100644 --- a/drivers/media/video/tda9887.c +++ b/drivers/media/video/tda9887.c @@ -610,7 +610,7 @@ static void tda9887_release(struct tuner *t) t->priv = NULL; } -static struct tuner_operations tda9887_tuner_ops = { +static struct analog_tuner_ops tda9887_tuner_ops = { .set_tv_freq = tda9887_set_freq, .set_radio_freq = tda9887_set_freq, .standby = tda9887_standby, @@ -636,7 +636,7 @@ int tda9887_tuner_init(struct tuner *t) tda9887_info("tda988[5/6/7] found @ 0x%x (%s)\n", t->i2c.addr, t->i2c.driver->driver.name); - memcpy(&t->ops, &tda9887_tuner_ops, sizeof(struct tuner_operations)); + t->fe.ops.analog_demod_ops = &tda9887_tuner_ops; return 0; } |