mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
[media] Kconfig: use menuconfig instead of menu
This allows disabling all drivers of a certain type as a hole Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
b6334460f2
commit
fc2bbfb2c3
3 changed files with 15 additions and 16 deletions
|
@ -1,6 +1,8 @@
|
|||
menu "V4L ISA and parallel port devices"
|
||||
visible if (ISA || PARPORT) && MEDIA_CAMERA_SUPPORT
|
||||
menuconfig MEDIA_PARPORT_SUPPORT
|
||||
bool "V4L ISA and parallel port devices"
|
||||
depends on (ISA || PARPORT) && MEDIA_CAMERA_SUPPORT
|
||||
|
||||
if MEDIA_PARPORT_SUPPORT
|
||||
config VIDEO_BWQCAM
|
||||
tristate "Quickcam BW Video For Linux"
|
||||
depends on PARPORT && VIDEO_V4L2
|
||||
|
@ -44,4 +46,4 @@ config VIDEO_W9966
|
|||
|
||||
Check out <file:Documentation/video4linux/w9966.txt> for more
|
||||
information.
|
||||
endmenu
|
||||
endif
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
#
|
||||
# DVB device configuration
|
||||
#
|
||||
menuconfig MEDIA_PCI_SUPPORT
|
||||
bool "Media PCI Adapters"
|
||||
depends on PCI && MEDIA_SUPPORT
|
||||
|
||||
menu "Media PCI Adapters"
|
||||
visible if PCI && MEDIA_SUPPORT
|
||||
if MEDIA_PCI_SUPPORT
|
||||
|
||||
if MEDIA_CAMERA_SUPPORT
|
||||
comment "Media capture support"
|
||||
|
@ -42,4 +41,4 @@ source "drivers/media/pci/ngene/Kconfig"
|
|||
source "drivers/media/pci/ddbridge/Kconfig"
|
||||
endif
|
||||
|
||||
endmenu
|
||||
endif #MEDIA_PCI_SUPPORT
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
#
|
||||
# USB media device configuration
|
||||
#
|
||||
menuconfig MEDIA_USB_SUPPORT
|
||||
bool "Media USB Adapters"
|
||||
depends on USB && MEDIA_SUPPORT
|
||||
|
||||
menu "Media USB Adapters"
|
||||
visible if USB && MEDIA_SUPPORT
|
||||
if MEDIA_USB_SUPPORT
|
||||
|
||||
if MEDIA_CAMERA_SUPPORT
|
||||
comment "Webcam devices"
|
||||
|
@ -25,7 +24,6 @@ source "drivers/media/usb/hdpvr/Kconfig"
|
|||
source "drivers/media/usb/tlg2300/Kconfig"
|
||||
source "drivers/media/usb/usbvision/Kconfig"
|
||||
source "drivers/media/usb/stk1160/Kconfig"
|
||||
|
||||
endif
|
||||
|
||||
if (MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT)
|
||||
|
@ -50,4 +48,4 @@ if (MEDIA_CAMERA_SUPPORT || MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT)
|
|||
source "drivers/media/usb/em28xx/Kconfig"
|
||||
endif
|
||||
|
||||
endmenu
|
||||
endif #MEDIA_USB_SUPPORT
|
||||
|
|
Loading…
Reference in a new issue