aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2016-07-22 04:23:18 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-08-09 10:15:44 -0400
commita26a142275c690d122edfba79120412cd7dbe38e (patch)
treeec90658c9db4a22222cdec304d64efc822f47e71 /drivers
parent1ebe88d38ddec6b05f7b5e64acef30a98a4ad17e (diff)
usb: remove redundant dependency on USB_SUPPORT
The whole Kconfig entries of the USB subsystem are surrounded with "if USB_SUPPORT" ... "endif", so CONFIG_USB_SUPPORT=y is surely met when these two Kconfig options are visible. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/usb/core/Kconfig1
-rw-r--r--drivers/usb/dwc3/Kconfig2
2 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/core/Kconfig b/drivers/usb/core/Kconfig
index dd280108758f..253aac74cce1 100644
--- a/drivers/usb/core/Kconfig
+++ b/drivers/usb/core/Kconfig
@@ -85,7 +85,6 @@ config USB_OTG_FSM
85 85
86config USB_ULPI_BUS 86config USB_ULPI_BUS
87 tristate "USB ULPI PHY interface support" 87 tristate "USB ULPI PHY interface support"
88 depends on USB_SUPPORT
89 help 88 help
90 UTMI+ Low Pin Interface (ULPI) is specification for a commonly used 89 UTMI+ Low Pin Interface (ULPI) is specification for a commonly used
91 USB 2.0 PHY interface. The ULPI specification defines a standard set 90 USB 2.0 PHY interface. The ULPI specification defines a standard set
diff --git a/drivers/usb/dwc3/Kconfig b/drivers/usb/dwc3/Kconfig
index a64ce1c94d6d..b97cde76914d 100644
--- a/drivers/usb/dwc3/Kconfig
+++ b/drivers/usb/dwc3/Kconfig
@@ -1,7 +1,7 @@
1config USB_DWC3 1config USB_DWC3
2 tristate "DesignWare USB3 DRD Core Support" 2 tristate "DesignWare USB3 DRD Core Support"
3 depends on (USB || USB_GADGET) && HAS_DMA 3 depends on (USB || USB_GADGET) && HAS_DMA
4 select USB_XHCI_PLATFORM if USB_SUPPORT && USB_XHCI_HCD 4 select USB_XHCI_PLATFORM if USB_XHCI_HCD
5 help 5 help
6 Say Y or M here if your system has a Dual Role SuperSpeed 6 Say Y or M here if your system has a Dual Role SuperSpeed
7 USB controller based on the DesignWare USB3 IP Core. 7 USB controller based on the DesignWare USB3 IP Core.