diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-08-13 23:13:22 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-08-15 15:25:07 -0400 |
commit | 0c0d06cac63ee327ceaab4b5ffe2206574ab86bd (patch) | |
tree | e759f0dc3185d97f2a0c6b5cd5e32ea6faa74d40 /drivers/media/usb/Kconfig | |
parent | 84cfe9e79bd5ac11c963f4841158454fefa872f6 (diff) |
[media] rename most media/video usb drivers to media/usb
Rename all USB drivers with their own directory under
drivers/media/video into drivers/media/usb and update the
building system.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/usb/Kconfig')
-rw-r--r-- | drivers/media/usb/Kconfig | 41 |
1 files changed, 36 insertions, 5 deletions
diff --git a/drivers/media/usb/Kconfig b/drivers/media/usb/Kconfig index 53664b35af1c..a1e25ee9d671 100644 --- a/drivers/media/usb/Kconfig +++ b/drivers/media/usb/Kconfig | |||
@@ -2,18 +2,49 @@ | |||
2 | # USB media device configuration | 2 | # USB media device configuration |
3 | # | 3 | # |
4 | 4 | ||
5 | menuconfig MEDIA_USB_DRIVERS | 5 | menu "Media USB Adapters" |
6 | bool "Supported DVB USB Adapters" | 6 | visible if USB && MEDIA_SUPPORT |
7 | depends on USB | ||
8 | default y | ||
9 | 7 | ||
10 | if MEDIA_USB_DRIVERS && DVB_CORE && I2C | 8 | if MEDIA_CAMERA_SUPPORT |
9 | comment "Webcam devices" | ||
10 | source "drivers/media/usb/uvc/Kconfig" | ||
11 | source "drivers/media/usb/gspca/Kconfig" | ||
12 | source "drivers/media/usb/pwc/Kconfig" | ||
13 | source "drivers/media/usb/cpia2/Kconfig" | ||
14 | source "drivers/media/usb/sn9c102/Kconfig" | ||
15 | endif | ||
16 | |||
17 | if MEDIA_ANALOG_TV_SUPPORT | ||
18 | comment "Analog TV USB devices" | ||
19 | source "drivers/media/usb/au0828/Kconfig" | ||
20 | source "drivers/media/usb/pvrusb2/Kconfig" | ||
21 | source "drivers/media/usb/hdpvr/Kconfig" | ||
22 | source "drivers/media/usb/tlg2300/Kconfig" | ||
23 | source "drivers/media/usb/usbvision/Kconfig" | ||
24 | source "drivers/media/usb/stk1160/Kconfig" | ||
11 | 25 | ||
26 | endif | ||
27 | |||
28 | if (MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT) | ||
29 | comment "Analog/digital TV USB devices" | ||
30 | source "drivers/media/usb/cx231xx/Kconfig" | ||
31 | source "drivers/media/usb/tm6000/Kconfig" | ||
32 | endif | ||
33 | |||
34 | |||
35 | if I2C && MEDIA_DIGITAL_TV_SUPPORT | ||
36 | comment "Digital TV USB devices" | ||
12 | source "drivers/media/usb/dvb-usb/Kconfig" | 37 | source "drivers/media/usb/dvb-usb/Kconfig" |
13 | source "drivers/media/usb/dvb-usb-v2/Kconfig" | 38 | source "drivers/media/usb/dvb-usb-v2/Kconfig" |
14 | source "drivers/media/usb/ttusb-budget/Kconfig" | 39 | source "drivers/media/usb/ttusb-budget/Kconfig" |
15 | source "drivers/media/usb/ttusb-dec/Kconfig" | 40 | source "drivers/media/usb/ttusb-dec/Kconfig" |
16 | source "drivers/media/usb/siano/Kconfig" | 41 | source "drivers/media/usb/siano/Kconfig" |
17 | source "drivers/media/usb/b2c2/Kconfig" | 42 | source "drivers/media/usb/b2c2/Kconfig" |
43 | endif | ||
18 | 44 | ||
45 | if (MEDIA_CAMERA_SUPPORT || MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT) | ||
46 | comment "Webcam, TV (analog/digital) USB devices" | ||
47 | source "drivers/media/usb/em28xx/Kconfig" | ||
19 | endif | 48 | endif |
49 | |||
50 | endmenu | ||