summaryrefslogtreecommitdiff
path: root/linux/drivers/media/Kconfig
diff options
context:
space:
mode:
authorMichael Hunold <devnull@localhost>2003-03-20 09:56:57 +0000
committerMichael Hunold <devnull@localhost>2003-03-20 09:56:57 +0000
commitdab9ea33014f096f57a109767f77a48c544bcbb4 (patch)
treee91686163e24c2de98c5f084487436e33ee408f7 /linux/drivers/media/Kconfig
parent5797f42d3ed47493db6ec2b904a9e8df10969f90 (diff)
downloadmediapointer-dvb-s2-dab9ea33014f096f57a109767f77a48c544bcbb4.tar.gz
mediapointer-dvb-s2-dab9ea33014f096f57a109767f77a48c544bcbb4.tar.bz2
Small changes all over the place:
- sync Kconfig and Makefiles with 2.5.65 - fix various things in saa7146 because of latest v4l changes in 2.5.65 - makelinks: removed the compat module from the 2.5.x build process - makelinks: removed the linkage of ttusb and bt8xx -- enable this again for the next patches, when ttusb is more stable and the bt8xx related patches have been applied by Gerd Knorr - dvb: removed the compat module from the 2.5.x build process, added #ifdefs around the inclusion of compat.h. this was necessary because having compat code in the newest 2.5.x kernel is awkward. - dvb: move around of dvb_usercopy again. because I removed the compat module from the 2.5.x build process, dvb_usercopy had to be moved to another file - dvb: change MOD_*_USE_COUNT to module_get/module_put in various files, but I'm not sure if I did this right. please review these changes. - dvb: removed the crc32 code from dvb_demux.c, because it's in compat.c, too. - dvb: removed some cruft from dvd_i2c.c, which is present in compat.h - all files: apply small fixes to reflect the new location of some header files
Diffstat (limited to 'linux/drivers/media/Kconfig')
-rw-r--r--linux/drivers/media/Kconfig21
1 files changed, 19 insertions, 2 deletions
diff --git a/linux/drivers/media/Kconfig b/linux/drivers/media/Kconfig
index 0814912c5..b0fcbddea 100644
--- a/linux/drivers/media/Kconfig
+++ b/linux/drivers/media/Kconfig
@@ -26,13 +26,30 @@ config VIDEO_DEV
whenever you want). If you want to compile it as a module, say M
here and read <file:Documentation/modules.txt>.
-source "drivers/media/common/Kconfig"
-
source "drivers/media/video/Kconfig"
source "drivers/media/radio/Kconfig"
source "drivers/media/dvb/Kconfig"
+source "drivers/media/common/Kconfig"
+
+config VIDEO_TUNER
+ tristate
+ default y if VIDEO_BT848=y || VIDEO_SAA7134=y || VIDEO_MXB=y || VIDEO_DPC=y
+ default m if VIDEO_BT848=m || VIDEO_SAA7134=m || VIDEO_MXB=m || VIDEO_DPC=m
+ depends on VIDEO_DEV
+
+config VIDEO_BUF
+ tristate
+ default y if VIDEO_BT848=y || VIDEO_SAA7134=y || VIDEO_SAA7146=y
+ default m if VIDEO_BT848=m || VIDEO_SAA7134=m || VIDEO_SAA7134=m
+ depends on VIDEO_DEV
+
+config VIDEO_BTCX
+ tristate
+ default VIDEO_BT848
+ depends on VIDEO_DEV
+
endmenu