Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1if PCI && MEDIA_SUPPORT
2
3menuconfig MEDIA_PCI_SUPPORT
4 bool "Media PCI Adapters"
5 help
6 Enable media drivers for PCI/PCIe bus.
7 If you have such devices, say Y.
8
9if MEDIA_PCI_SUPPORT
10
11if MEDIA_CAMERA_SUPPORT
12 comment "Media capture support"
13source "drivers/media/pci/meye/Kconfig"
14source "drivers/media/pci/sta2x11/Kconfig"
15endif
16
17if MEDIA_ANALOG_TV_SUPPORT
18 comment "Media capture/analog TV support"
19source "drivers/media/pci/ivtv/Kconfig"
20source "drivers/media/pci/zoran/Kconfig"
21source "drivers/media/pci/saa7146/Kconfig"
22endif
23
24if MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT
25 comment "Media capture/analog/hybrid TV support"
26source "drivers/media/pci/cx18/Kconfig"
27source "drivers/media/pci/cx23885/Kconfig"
28source "drivers/media/pci/cx25821/Kconfig"
29source "drivers/media/pci/cx88/Kconfig"
30source "drivers/media/pci/bt8xx/Kconfig"
31source "drivers/media/pci/saa7134/Kconfig"
32source "drivers/media/pci/saa7164/Kconfig"
33
34endif
35
36if MEDIA_DIGITAL_TV_SUPPORT
37 comment "Media digital TV PCI Adapters"
38source "drivers/media/pci/ttpci/Kconfig"
39source "drivers/media/pci/b2c2/Kconfig"
40source "drivers/media/pci/pluto2/Kconfig"
41source "drivers/media/pci/dm1105/Kconfig"
42source "drivers/media/pci/pt1/Kconfig"
43source "drivers/media/pci/mantis/Kconfig"
44source "drivers/media/pci/ngene/Kconfig"
45source "drivers/media/pci/ddbridge/Kconfig"
46endif
47
48endif #MEDIA_PCI_SUPPORT
49endif #PCI