aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/pci/Kconfig
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2013-05-22 11:25:52 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-06-17 11:40:28 -0300
commit5077ac3b8108007f4a2b4589f2d373cf55453206 (patch)
tree8aa2240a2470230a78b4e2e424399f01a857b6ff /drivers/media/pci/Kconfig
parent[media] mt9p031: Use bulk regulator API (diff)
downloadlinux-dev-5077ac3b8108007f4a2b4589f2d373cf55453206.tar.xz
linux-dev-5077ac3b8108007f4a2b4589f2d373cf55453206.zip
Properly handle tristate dependencies on USB/PCI menus
As USB/PCI/MEDIA_SUPPORT dependencies can be tristate, we can't simply make the bool menu to be dependent on it. Everything below the menu should also depend on it, otherwise, we risk to allow building them with 'y', while only 'm' would be supported. So, add an IF just before everything below, in order to avoid such risks. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/pci/Kconfig')
-rw-r--r--drivers/media/pci/Kconfig4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/media/pci/Kconfig b/drivers/media/pci/Kconfig
index d4e2ed3f27e5..53196f1366f3 100644
--- a/drivers/media/pci/Kconfig
+++ b/drivers/media/pci/Kconfig
@@ -1,6 +1,7 @@
+if PCI && MEDIA_SUPPORT
+
menuconfig MEDIA_PCI_SUPPORT
bool "Media PCI Adapters"
- depends on PCI && MEDIA_SUPPORT
help
Enable media drivers for PCI/PCIe bus.
If you have such devices, say Y.
@@ -45,3 +46,4 @@ source "drivers/media/pci/ddbridge/Kconfig"
endif
endif #MEDIA_PCI_SUPPORT
+endif #PCI