]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
usb: dwc3: Allow building USB_DWC3_QCOM without EXTCON
authorMarc Gonzalez <marc.w.gonzalez@free.fr>
Wed, 24 Apr 2019 15:00:57 +0000 (17:00 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Apr 2019 08:59:03 +0000 (10:59 +0200)
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 <marc.w.gonzalez@free.fr>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/dwc3/Kconfig

index 2b1494460d0cb13c7c260b9b4e818918f2ef2099..784309435916ff6605c92b99c4ffe0c03172f62c 100644 (file)
@@ -54,7 +54,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
@@ -115,7 +116,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