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 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 26924C43219 for ; Thu, 25 Apr 2019 14:30:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1DA342077C for ; Thu, 25 Apr 2019 14:30:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1556202622; bh=v8whr++4M6326EeUHXIh73ITraPPRigOvTyV99Ps41o=; h=Subject:To:From:Date:List-ID:From; b=Fs1CC5GpT6cfvDg1OrJiuo7Ej54v2sQsTnkunyV9rmgTIvd9KgrGoFq4gC2DQFzTW f9pZfQykjexidOjEXMS4b8YqHtkJdWu2SeSwUn97v8cxIIX2maSsBs9gFGA//CWnnX p+0Tl12VVe4emTA3SmJID6rj+venyUhQWgwUyNrs= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726074AbfDYOaU (ORCPT ); Thu, 25 Apr 2019 10:30:20 -0400 Received: from mail.kernel.org ([198.145.29.99]:39714 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727806AbfDYO3f (ORCPT ); Thu, 25 Apr 2019 10:29:35 -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 D2AA820679; Thu, 25 Apr 2019 14:29:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1556202575; bh=v8whr++4M6326EeUHXIh73ITraPPRigOvTyV99Ps41o=; h=Subject:To:From:Date:From; b=kmhSdDQ6hzlfksdXdGgDpjb/JcQHDn+JefZ4XVIBOrgLP1mCwKPBuHzCwOE7EIQju eSc0ANRZAdpNQsqzNze0de4oMDMEaRnSTxFqHL2KbQiuU22zaLEu0kQmhnv9saVJhy rx6BvbckNmK0w9yMIxrtrvElAMKca5tR/NmacyVM= Subject: patch "usb: dwc3: Allow building USB_DWC3_QCOM without EXTCON" added to usb-next To: marc.w.gonzalez@free.fr, gregkh@linuxfoundation.org, stable@vger.kernel.org From: Date: Thu, 25 Apr 2019 16:27:21 +0200 Message-ID: <155620244112135@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-next 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 also be merged in the next major kernel release during the merge window. 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