From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BFAA2C10F03 for ; Thu, 25 Apr 2019 09:00:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 87E57217FA for ; Thu, 25 Apr 2019 09:00:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1556182831; bh=YE416fDJ0gAhPe2z0B3CJrPupGZa6CRdkN6yvgjleiA=; h=Subject:To:From:Date:List-ID:From; b=ND+9tiIdU7bsCasjn3iOnWDJnT8tAIK0r7/eznM/4OY6oIJDFaTJz8RLZgRhGhr1K BuZJFWtItGFw+pljD7Qqw3pVKeLS63NdfQDBUUa3dWbhRqbS+vM4+h/TjBKyHlhTcw E3rqAw30/KKkqeTssT1f/2x1ZYz8NmG4HqhDsXGI= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726731AbfDYJAb (ORCPT ); Thu, 25 Apr 2019 05:00:31 -0400 Received: from mail.kernel.org ([198.145.29.99]:38590 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726039AbfDYJAb (ORCPT ); Thu, 25 Apr 2019 05:00:31 -0400 Received: from localhost (62-193-50-229.as16211.net [62.193.50.229]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 9A2BF214C6; Thu, 25 Apr 2019 09:00:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1556182830; bh=YE416fDJ0gAhPe2z0B3CJrPupGZa6CRdkN6yvgjleiA=; h=Subject:To:From:Date:From; b=uk0uMfDQ72i1I4OQptWINSs4ryUn8JEZL7s+OVYePTr4dwCP5pL6s3acKQvQ+bkAx a/t2fKB0XXWV7EBJsv+atLgwn2YgMaN6SK7/JhJLCVwhxsruNrXQXfF07CW0RaW+bB sFCsR+JeWDc9xhgQjydjRrXb44QdJbXriuAxpang= Subject: patch "usb: dwc3: Allow building USB_DWC3_QCOM without EXTCON" added to usb-testing To: marc.w.gonzalez@free.fr, gregkh@linuxfoundation.org, stable@vger.kernel.org From: Date: Thu, 25 Apr 2019 11:00:19 +0200 Message-ID: <155618281926119@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org This is a note to let you know that I've just added the patch titled usb: dwc3: Allow building USB_DWC3_QCOM without EXTCON to my usb git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git in the usb-testing branch. The patch will show up in the next release of the linux-next tree (usually sometime within the next 24 hours during the week.) The patch will be merged to the usb-next branch sometime soon, after it passes testing, and the merge window is open. If you have any questions about this process, please let me know. >From 77a4946516fe488b6a33390de6d749f934a243ba Mon Sep 17 00:00:00 2001 From: Marc Gonzalez Date: Wed, 24 Apr 2019 17:00:57 +0200 Subject: usb: dwc3: Allow building USB_DWC3_QCOM without EXTCON 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 Cc: stable Signed-off-by: Greg Kroah-Hartman --- drivers/usb/dwc3/Kconfig | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/usb/dwc3/Kconfig b/drivers/usb/dwc3/Kconfig index 2b1494460d0c..784309435916 100644 --- a/drivers/usb/dwc3/Kconfig +++ b/drivers/usb/dwc3/Kconfig @@ -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 -- 2.21.0