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/tuner-driver.h | |
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/tuner-driver.h')
-rw-r--r-- | drivers/media/video/tuner-driver.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/media/video/tuner-driver.h b/drivers/media/video/tuner-driver.h index a215161d0241..c245f501a319 100644 --- a/drivers/media/video/tuner-driver.h +++ b/drivers/media/video/tuner-driver.h @@ -28,7 +28,14 @@ extern unsigned const int tuner_count; +struct analog_demod_info { + char name[128]; +}; + struct analog_tuner_ops { + + struct analog_demod_info info; + void (*set_params)(struct dvb_frontend *fe, struct analog_parameters *params); int (*has_signal)(struct dvb_frontend *fe); |