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=-13.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,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 5B7C3C07E99 for ; Mon, 12 Jul 2021 14:30:51 +0000 (UTC) Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id F1E1261156 for ; Mon, 12 Jul 2021 14:30:50 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org F1E1261156 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=blueri.se Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 7632F82DFB; Mon, 12 Jul 2021 16:30:48 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=blueri.se Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id CD10982DFB; Mon, 12 Jul 2021 16:30:46 +0200 (CEST) Received: from pwildt.genua.de (pwildt.genua.de [80.154.94.49]) (using TLSv1.3 with cipher TLS_CHACHA20_POLY1305_SHA256 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 548B282D62 for ; Mon, 12 Jul 2021 16:30:39 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=blueri.se Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=patrick@blueri.se Received: from mone.fritz.box (p200300c1c71e4600ada1edba64dff7ae.dip0.t-ipconnect.de [2003:c1:c71e:4600:ada1:edba:64df:f7ae]) by pwildt.genua.de (OpenSMTPD) with ESMTPSA id 82491514 (TLSv1.3:AEAD-CHACHA20-POLY1305-SHA256:256:NO); Mon, 12 Jul 2021 16:30:38 +0200 (CEST) Date: Mon, 12 Jul 2021 16:30:36 +0200 From: Patrick Wildt To: Ye Li Cc: sbabic@denx.de, u-boot@lists.denx.de, festevam@gmail.com, peng.fan@nxp.com, uboot-imx@nxp.com Subject: Re: [PATCH 2/4] arm: dts: imx8mq: Add alias for two usb controllers Message-ID: References: <1613924784-63219-1-git-send-email-ye.li@nxp.com> <1613924784-63219-2-git-send-email-ye.li@nxp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1613924784-63219-2-git-send-email-ye.li@nxp.com> X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.34 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean Am Sun, Feb 21, 2021 at 08:26:22AM -0800 schrieb Ye Li: > Add alias for two DWC3 usb controllers to fix the seq index. > > Signed-off-by: Ye Li > --- > arch/arm/dts/imx8mq.dtsi | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/arch/arm/dts/imx8mq.dtsi b/arch/arm/dts/imx8mq.dtsi > index a841a02..a44f729 100644 > --- a/arch/arm/dts/imx8mq.dtsi > +++ b/arch/arm/dts/imx8mq.dtsi > @@ -39,6 +39,8 @@ > spi0 = &ecspi1; > spi1 = &ecspi2; > spi2 = &ecspi3; > + usb0 = &usb_dwc3_0; > + usb1 = &usb_dwc3_1; I'm not sure what the policy is. Should changes to the device tree be put into the u-boot.dtsi? At least it isn't part of torvald's master branch. In any case: Tested-by: Patrick Wildt > }; > > ckil: clock-ckil { > -- > 2.7.4 >