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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 80553C32772 for ; Thu, 18 Aug 2022 14:34:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1343615AbiHROeY (ORCPT ); Thu, 18 Aug 2022 10:34:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55760 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1343584AbiHROdy (ORCPT ); Thu, 18 Aug 2022 10:33:54 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 66A33DF89; Thu, 18 Aug 2022 07:33:28 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id E2B16B821BC; Thu, 18 Aug 2022 14:33:26 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 22A1BC433D6; Thu, 18 Aug 2022 14:33:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1660833205; bh=Fv5m10gg2ji++5TNsJAaaVltj/cw4mPYnmJYdxgMgcU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=qWHRXicI8Lql5+n/x1udzHvYeq/dabucq55W1MBoTEIEUr9sDX3VwrFFfO2nFuZ11 soNqfw64wDxVm/c/aegQt5/nTHnZulklNT8cjt89H1l2+8+tv24R3lVOJBiXz/PbAm xWzYrLWIhT1/ZmKDjjUJmPFfFXYNtUWA/3Z5wA2o= Date: Thu, 18 Aug 2022 16:33:23 +0200 From: Greg Kroah-Hartman To: Arnd Bergmann Cc: linux-arm-kernel@lists.infradead.org, Bin Liu , Arnd Bergmann , Stefan Wahren , Felipe Balbi , Tony Lindgren , Randy Dunlap , Conor Dooley , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 11/11] musb: fix USB_MUSB_TUSB6010 dependency Message-ID: References: <20220818135522.3143514-1-arnd@kernel.org> <20220818135737.3143895-1-arnd@kernel.org> <20220818135737.3143895-10-arnd@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Aug 18, 2022 at 04:27:17PM +0200, Arnd Bergmann wrote: > On Thu, Aug 18, 2022 at 4:08 PM Greg Kroah-Hartman > wrote: > > > > On Thu, Aug 18, 2022 at 03:57:20PM +0200, Arnd Bergmann wrote: > > > From: Arnd Bergmann > > > > > > Turning on NOP_USB_XCEIV as builtin broke the TUSB6010 driver because > > > of an older issue with the depencency. > > > > > > It is not necessary to forbid NOP_USB_XCEIV=y in combination with > > > USB_MUSB_HDRC=m, but only the reverse, which causes the link failure > > > from the original Kconfig change. > > > > > > Use the correct dependency to still allow NOP_USB_XCEIV=n or > > > NOP_USB_XCEIV=y but forbid NOP_USB_XCEIV=m when USB_MUSB_HDRC=m > > > to fix the multi_v7_defconfig for tusb. > > > > > > Fixes: ab37a7a890c1 ("ARM: multi_v7_defconfig: Make NOP_USB_XCEIV driver built-in") > > > Fixes: c0442479652b ("usb: musb: Fix randconfig build issues for Kconfig options") > > > Signed-off-by: Arnd Bergmann > > > --- > > > drivers/usb/musb/Kconfig | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > Want me to take this through my tree now? > > Yes, please do. Now done, thanks!