From: Marc Gonzalez <[email protected]>

commit 77a4946516fe488b6a33390de6d749f934a243ba upstream.

Keep EXTCON support optional, as some platforms do not need it.

Do the same for USB_DWC3_OMAP while we're at it.

Fixes: 3def4031b3e3f ("usb: dwc3: add EXTCON dependency for qcom")
Signed-off-by: Marc Gonzalez <[email protected]>
Cc: stable <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 drivers/usb/dwc3/Kconfig |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

--- a/drivers/usb/dwc3/Kconfig
+++ b/drivers/usb/dwc3/Kconfig
@@ -52,7 +52,8 @@ comment "Platform Glue Driver Support"
 
 config USB_DWC3_OMAP
        tristate "Texas Instruments OMAP5 and similar Platforms"
-       depends on EXTCON && (ARCH_OMAP2PLUS || COMPILE_TEST)
+       depends on ARCH_OMAP2PLUS || COMPILE_TEST
+       depends on EXTCON || !EXTCON
        depends on OF
        default USB_DWC3
        help
@@ -113,7 +114,8 @@ config USB_DWC3_ST
 
 config USB_DWC3_QCOM
        tristate "Qualcomm Platform"
-       depends on EXTCON && (ARCH_QCOM || COMPILE_TEST)
+       depends on ARCH_QCOM || COMPILE_TEST
+       depends on EXTCON || !EXTCON
        depends on OF
        default USB_DWC3
        help


Reply via email to