summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/ttpci-budget/Kconfig
diff options
context:
space:
mode:
authorMichael Hunold <devnull@localhost>2003-01-04 18:00:25 +0000
committerMichael Hunold <devnull@localhost>2003-01-04 18:00:25 +0000
commitf9baa931e2c4bc43371addc9b654afa06ae325a0 (patch)
tree21be91354e235ed17470ce3ee173e06648ad1db7 /linux/drivers/media/dvb/ttpci-budget/Kconfig
parent6ef9b1ac86347c93e5bed9c3dc83893f12c7e0d6 (diff)
downloadmediapointer-dvb-s2-f9baa931e2c4bc43371addc9b654afa06ae325a0.tar.gz
mediapointer-dvb-s2-f9baa931e2c4bc43371addc9b654afa06ae325a0.tar.bz2
Some more changes... (but we're stabilizing...)
2.5.x: - exchanged the Kconfig files for "ttpci" and "ttpci-budget" - removed the "SAA7146 based" from the card descriptions, but put it to the remark some lines above saa7146: - simplified the probe(), attach(), detach() logic, since all dvb devices can be identified by their subvendor/subdevice ids av7110: - added two wait_for_debi_done() calls in gpioirq(). (All other IER_ENABLE() calls are preceded by wait_for_debi_done()) budget: - budget.c has been split up into budget.c and budget-av.c. The latter is for budget cards with analog video (av) inputs. Definitions are now in budget.h. budget.c exports various functions that are used by budget-av.c, too. The av code is currently missing, though, and needs to be added. unsorted: - various c99 initializer cleanups
Diffstat (limited to 'linux/drivers/media/dvb/ttpci-budget/Kconfig')
-rw-r--r--linux/drivers/media/dvb/ttpci-budget/Kconfig39
1 files changed, 23 insertions, 16 deletions
diff --git a/linux/drivers/media/dvb/ttpci-budget/Kconfig b/linux/drivers/media/dvb/ttpci-budget/Kconfig
index 3c4d43d41..ced13d6fd 100644
--- a/linux/drivers/media/dvb/ttpci-budget/Kconfig
+++ b/linux/drivers/media/dvb/ttpci-budget/Kconfig
@@ -1,24 +1,31 @@
-config DVB_AV7110
- tristate "SAA7146 based AV7110 PCI cards"
+config DVB_BUDGET
+ tristate "Budget cards"
depends on VIDEO_DEV && DVB_CORE
help
- Support for SAA7146 and AV7110 based DVB cards as produced
- by Fujitsu-Siemens, Technotrend, Hauppauge and others.
-
- This driver only supports the fullfeatured cards with
- onboard MPEG2 decoder.
+ Support for simple SAA7146 based DVB cards
+ (so called Budget- or Nova-PCI cards) without onboard
+ MPEG2 decoder.
Say Y if you own such a card and want to use it.
-config DVB_AV7110_OSD
- bool "AV7110 OSD support"
- depends on DVB_AV7110
+ This driver is available as a module called
+ dvb-ttpci-budget.o ( = code which can be inserted in
+ and removed from the running kernel whenever you want).
+ If you want to compile it as a module, say M
+ here and read <file:Documentation/modules.txt>.
+
+config DVB_BUDGET_AV
+ tristate "Budget cards with analog video inputs"
+ depends on VIDEO_DEV && DVB_CORE && DVB_BUDGET
help
- The AV7110 firmware provides some code to generate an OnScreenDisplay
- on the video output. This is kind of nonstandard and not guaranteed to
- be maintained.
+ Support for simple SAA7146 based DVB cards
+ (so called Budget- or Nova-PCI cards) without onboard
+ MPEG2 decoder, but with one or more analog video inputs.
- Anyway, some popular DVB software like VDR uses this OSD to render
- its menus, so say Y if you want to use this software.
+ Say Y if you own such a card and want to use it.
- All other people say N.
+ This driver is available as a module called
+ dvb-ttpci-budget-av.o ( = code which can be inserted in
+ and removed from the running kernel whenever you want).
+ If you want to compile it as a module, say M
+ here and read <file:Documentation/modules.txt>.