diff options
Diffstat (limited to 'drivers/usb/Kconfig')
-rw-r--r-- | drivers/usb/Kconfig | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig index 15499b7e33f4..172a6065f5a2 100644 --- a/drivers/usb/Kconfig +++ b/drivers/usb/Kconfig | |||
@@ -2,9 +2,12 @@ | |||
2 | # USB device configuration | 2 | # USB device configuration |
3 | # | 3 | # |
4 | 4 | ||
5 | menu "USB support" | 5 | menuconfig USB_SUPPORT |
6 | bool "USB support" | ||
6 | depends on HAS_IOMEM | 7 | depends on HAS_IOMEM |
7 | 8 | ||
9 | if USB_SUPPORT | ||
10 | |||
8 | # Host-side USB depends on having a host controller | 11 | # Host-side USB depends on having a host controller |
9 | # NOTE: dummy_hcd is always an option, but it's ignored here ... | 12 | # NOTE: dummy_hcd is always an option, but it's ignored here ... |
10 | # NOTE: SL-811 option should be board-specific ... | 13 | # NOTE: SL-811 option should be board-specific ... |
@@ -12,6 +15,7 @@ config USB_ARCH_HAS_HCD | |||
12 | boolean | 15 | boolean |
13 | default y if USB_ARCH_HAS_OHCI | 16 | default y if USB_ARCH_HAS_OHCI |
14 | default y if USB_ARCH_HAS_EHCI | 17 | default y if USB_ARCH_HAS_EHCI |
18 | default y if PCMCIA # sl811_cs | ||
15 | default y if ARM # SL-811 | 19 | default y if ARM # SL-811 |
16 | default PCI | 20 | default PCI |
17 | 21 | ||
@@ -130,5 +134,4 @@ source "drivers/usb/atm/Kconfig" | |||
130 | 134 | ||
131 | source "drivers/usb/gadget/Kconfig" | 135 | source "drivers/usb/gadget/Kconfig" |
132 | 136 | ||
133 | endmenu | 137 | endif # USB_SUPPORT |
134 | |||