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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id 7CB70C4332F for ; Sat, 31 Dec 2022 16:25:31 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id DE81C853BE; Sat, 31 Dec 2022 17:25:28 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1672503929; bh=EL5h0RiA2qzjtW6oUICAGu96p/meu3XV8T++IGCoVOU=; h=From:To:Cc:Subject:Date:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:List-Subscribe:From; b=zmBfXoVpkHcgl0AOu1iSCoTczbdDjAY0f9encWktVLDjzbSvrtwJnBBFDnPdfdrf8 dWAF9pFTf1mfidnQ97eTGPHM7ROGaumHZ5ML1j3QEx6kW/ipfUe52y1FuKZPRVe+Nt zUNgUTilqGFUNaTBhpQrHudyJSAt+QXIAUA6mPB2VjUm8hcb7+L/fDygFJ3pWTY7Fg RJ+SsepSfb4eJdTbjdmEFk2iVVUogvq5Bv2x/tUbZgElCYMHtC1DgSf8yroLlIBaju mzqbxC4BV/v7X9g8qDiYJHMPqSgVlFnHImgFcjYJPTTWQDlOmggrq/Sz0geBawX1ym DDPCU1lwqJ7sA== Received: from localhost.localdomain (unknown [IPv6:2804:14c:485:4b69:228c:6efe:35c3:bdf1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: festevam@denx.de) by phobos.denx.de (Postfix) with ESMTPSA id 10A0085304; Sat, 31 Dec 2022 17:25:24 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1672503926; bh=EL5h0RiA2qzjtW6oUICAGu96p/meu3XV8T++IGCoVOU=; h=From:To:Cc:Subject:Date:From; b=H7hVqaCusIoaWowmkdmFeeP9PocMdPjYnaY/2XZERSduA9Ebzm6DMiVyRgMmceOYZ 6TRks2MpyDUBvbaHjjLHRxOxSI9eG3g05m2UNGcvw4taJMgsn5CkeU6rlz3y6yn0GA fRBy+oNjbYUZZ3EjuqLZ1pOtaTqF+1UI/UOcEoolSuBL8ZNjj3WD/MIIIVCv0dTHow HLAAImFYCV2goSf5snZl7ceGf4nge5UDhSndcETF5FbBjUOl6BrW3mpwawOiR24zXQ R89WPAlFBHgiP8Ba4Dh6MzW18gqc3GTIoLYqkYbT9p6Pf56LbAKeGpfu7isIi04jBx QNWsme3JnsC1A== From: Fabio Estevam To: sbabic@denx.de Cc: trini@konsulko.com, u-boot@lists.denx.de, egyszeregy@freemail.hu, Fabio Estevam Subject: [PATCH] imx7d-pico: Fix the name of the u-boot.dtsi file Date: Sat, 31 Dec 2022 13:25:14 -0300 Message-Id: <20221231162514.334303-1-festevam@denx.de> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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.6 at phobos.denx.de X-Virus-Status: Clean Since commit 2f96d4dd95f8 ("imx7s/d: synchronise device trees with linux") the imx7d-pico board no longer boots. The reason is that prior to the above commit there was an explicit inclusion of arch/arm/dts/imx7d-pico-u-boot.dtsi inside imx7d-pico.dtsi. After the syncing with the Linux upstream dtsi, this u-boot.dtsi inclusion is gone and the board fails to boot. U-Boot uses the imx7d-pico-pi.dtb file, so rename the u-boot.dtsi to imx7d-pico-pi-u-boot.dtsi which gets included automatically by U-Boot standard make logic and makes the board boot again. Signed-off-by: Fabio Estevam --- Hi Tom and Stefano, Please apply this one for U-Boot 2023.01 to fix a boot regression. Thanks .../arm/dts/{imx7d-pico-u-boot.dtsi => imx7d-pico-pi-u-boot.dtsi} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename arch/arm/dts/{imx7d-pico-u-boot.dtsi => imx7d-pico-pi-u-boot.dtsi} (100%) diff --git a/arch/arm/dts/imx7d-pico-u-boot.dtsi b/arch/arm/dts/imx7d-pico-pi-u-boot.dtsi similarity index 100% rename from arch/arm/dts/imx7d-pico-u-boot.dtsi rename to arch/arm/dts/imx7d-pico-pi-u-boot.dtsi -- 2.25.1