Age | Commit message (Collapse) | Author |
|
From: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Reviewed-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
---
linux/drivers/media/dvb/frontends/tda827x.c | 61 +++++++++++++++++++++++++---
linux/drivers/media/dvb/frontends/tda827x.h | 3 -
linux/drivers/media/video/tda8290.c | 20 ---------
3 files changed, 57 insertions(+), 27 deletions(-)
|
|
From: Michael Krufky <mkrufky@linuxtv.org>
Add analog tuning support to tda827x dvb_frontend tuner module.
Convert tda8290 module back to native tuner interface.
The tda8290 analog demodulator will be handled the same way as tda9887.
The tuner.ko module (tuner-core) will pass commands to tda8290 via the
tuner_operations interface. tda8290 will communicate with tda827x via
the dvb_frontend interface, while passing a pointer to a private data
structure.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Reviewed-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
---
linux/drivers/media/Kconfig | 1
linux/drivers/media/dvb/frontends/tda827x.c | 307 ++++++++++++++-
linux/drivers/media/dvb/frontends/tda827x.h | 10
linux/drivers/media/video/tda8290.c | 566 +++++-----------------------
linux/drivers/media/video/tda8290.h | 30 -
linux/drivers/media/video/tuner-core.c | 16
6 files changed, 424 insertions(+), 506 deletions(-)
|
|
From: Michael Krufky <mkrufky@linuxtv.org>
The patch moves the tda827x dvb tuning code to a separate module
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t-online.de>
|