diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-12-09 19:52:51 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-26 00:03:28 +0300 |
commit | a55db8cd7f8a107f3abcb4c803b1873b2be63663 (patch) | |
tree | 0198ed8bcbddcaa1f2f8fe41f13ec9735e180176 /drivers/media/video/tda9887.c | |
parent | ab1660503ac3af7febfcf987648509b484d4feda (diff) | |
download | linux-a55db8cd7f8a107f3abcb4c803b1873b2be63663.tar.xz |
V4L/DVB (6786): tuner: add struct analog_demod_info to struct analog_tuner_ops
Store the analog demodulator name in fe.ops.analog_demod_ops.info.name
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
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 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/media/video/tda9887.c b/drivers/media/video/tda9887.c index 98d45c4912bd..8a95f097ba23 100644 --- a/drivers/media/video/tda9887.c +++ b/drivers/media/video/tda9887.c @@ -636,6 +636,9 @@ static void tda9887_release(struct dvb_frontend *fe) } static struct analog_tuner_ops tda9887_tuner_ops = { + .info = { + .name = "TDA9887", + }, .set_params = tda9887_set_params, .standby = tda9887_standby, .tuner_status = tda9887_tuner_status, |