diff options
author | Chunfeng Yun <chunfeng.yun@mediatek.com> | 2018-04-24 10:52:50 +0800 |
---|---|---|
committer | Felipe Balbi <felipe.balbi@linux.intel.com> | 2018-05-15 10:15:10 +0300 |
commit | f39846824cd682c6662f90ec67bf136897cf60e8 (patch) | |
tree | 0a17fb5e3dac78d41ea56ff8c75327a7f96c5429 /drivers/usb/mtu3/Kconfig | |
parent | f3b28e5e07ef5feaa0071050d14d5b6e6cb68060 (diff) | |
download | linux-stable-f39846824cd682c6662f90ec67bf136897cf60e8.tar.gz linux-stable-f39846824cd682c6662f90ec67bf136897cf60e8.tar.bz2 linux-stable-f39846824cd682c6662f90ec67bf136897cf60e8.zip |
usb: mtu3: make USB_MTU3_DUAL_ROLE depend on EXTCON but not USB_MTU3
In fact the driver depends on EXTCON only when it's configed as
USB_MTU3_DUAL_ROLE, so make USB_MTU3_DUAL_ROLE depend on EXTCON but
not USB_MTU3.
Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Diffstat (limited to 'drivers/usb/mtu3/Kconfig')
-rw-r--r-- | drivers/usb/mtu3/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/mtu3/Kconfig b/drivers/usb/mtu3/Kconfig index 25cd61947bee..8daf27768888 100644 --- a/drivers/usb/mtu3/Kconfig +++ b/drivers/usb/mtu3/Kconfig @@ -2,7 +2,7 @@ config USB_MTU3 tristate "MediaTek USB3 Dual Role controller" - depends on EXTCON && (USB || USB_GADGET) && HAS_DMA + depends on (USB || USB_GADGET) && HAS_DMA depends on ARCH_MEDIATEK || COMPILE_TEST select USB_XHCI_MTK if USB_SUPPORT && USB_XHCI_HCD help @@ -40,6 +40,7 @@ config USB_MTU3_GADGET config USB_MTU3_DUAL_ROLE bool "Dual Role mode" depends on ((USB=y || USB=USB_MTU3) && (USB_GADGET=y || USB_GADGET=USB_MTU3)) + depends on (EXTCON=y || EXTCON=USB_MTU3) help This is the default mode of working of MTU3 controller where both host and gadget features are enabled. |