diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-12-09 11:52:51 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 16:03:28 -0500 |
commit | a55db8cd7f8a107f3abcb4c803b1873b2be63663 (patch) | |
tree | 0198ed8bcbddcaa1f2f8fe41f13ec9735e180176 /drivers/media/video/tda9887.c | |
parent | ab1660503ac3af7febfcf987648509b484d4feda (diff) |
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) | |||
636 | } | 636 | } |
637 | 637 | ||
638 | static struct analog_tuner_ops tda9887_tuner_ops = { | 638 | static struct analog_tuner_ops tda9887_tuner_ops = { |
639 | .info = { | ||
640 | .name = "TDA9887", | ||
641 | }, | ||
639 | .set_params = tda9887_set_params, | 642 | .set_params = tda9887_set_params, |
640 | .standby = tda9887_standby, | 643 | .standby = tda9887_standby, |
641 | .tuner_status = tda9887_tuner_status, | 644 | .tuner_status = tda9887_tuner_status, |