diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-08-25 01:30:20 +0900 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2017-08-28 22:32:34 +0200 |
commit | 6ea247d1376138026fcb4b9d869ed0956e7c0f59 (patch) | |
tree | f825cb7655c665a23f1ba906b1998e403fb26465 /drivers/usb | |
parent | 8b3cec7da18645eda7f7cd0b65ee9f2dac573409 (diff) | |
download | u-boot-6ea247d1376138026fcb4b9d869ed0956e7c0f59.zip u-boot-6ea247d1376138026fcb4b9d869ed0956e7c0f59.tar.gz u-boot-6ea247d1376138026fcb4b9d869ed0956e7c0f59.tar.bz2 |
usb: dwc3: fix Kconfig dependency to accept host driver in drivers/usb/dwc3
We see the choice of USB_DWC3_HOST / _GADGET in drivers/usb/dwc3/Kconfig,
but we can not choose USB_DWC3_HOST unless USB_GADGET is defined.
This is strange.
Loosen the "depends on" and also move "select USB_GADGET_DUALSPEED" to
the correct place.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/dwc3/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/dwc3/Kconfig b/drivers/usb/dwc3/Kconfig index e93398f..a291ceb 100644 --- a/drivers/usb/dwc3/Kconfig +++ b/drivers/usb/dwc3/Kconfig @@ -1,7 +1,6 @@ config USB_DWC3 bool "DesignWare USB3 DRD Core Support" - depends on (USB && USB_GADGET) - select USB_GADGET_DUALSPEED + depends on USB_HOST || USB_GADGET help Say Y here if your system has a Dual Role SuperSpeed USB controller based on the DesignWare USB3 IP Core. @@ -21,6 +20,7 @@ config USB_DWC3_HOST config USB_DWC3_GADGET bool "Gadget only mode" depends on USB_GADGET + select USB_GADGET_DUALSPEED help Select this when you want to use DWC3 in gadget mode only, thereby the host feature will be regressed. |