From 446475ffbe175d4c8c7cd071681b0c2ea1385650 Mon Sep 17 00:00:00 2001 From: Michael Krufky Date: Sun, 9 Dec 2007 11:52:51 -0500 Subject: tuner: add struct analog_demod_info to struct analog_tuner_ops From: Michael Krufky Store the analog demodulator name in fe.ops.analog_demod_ops.info.name Signed-off-by: Michael Krufky --- linux/drivers/media/video/tda8290.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'linux/drivers/media/video/tda8290.c') diff --git a/linux/drivers/media/video/tda8290.c b/linux/drivers/media/video/tda8290.c index 9bb37ed14..de663918a 100644 --- a/linux/drivers/media/video/tda8290.c +++ b/linux/drivers/media/video/tda8290.c @@ -662,6 +662,9 @@ static int tda8295_probe(struct tuner_i2c_props *i2c_props) } static struct analog_tuner_ops tda8290_tuner_ops = { + .info = { + .name = "TDA8290", + }, .set_params = tda8290_set_params, .has_signal = tda8290_has_signal, .standby = tda8290_standby, @@ -670,6 +673,9 @@ static struct analog_tuner_ops tda8290_tuner_ops = { }; static struct analog_tuner_ops tda8295_tuner_ops = { + .info = { + .name = "TDA8295", + }, .set_params = tda8295_set_params, .has_signal = tda8295_has_signal, .standby = tda8295_standby, -- cgit v1.2.3