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 E1D43C433F5 for ; Thu, 13 Jan 2022 14:22:25 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 2C6AD83565; Thu, 13 Jan 2022 15:22:24 +0100 (CET) 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 D09AF83575; Thu, 13 Jan 2022 15:22:22 +0100 (CET) Received: from ams.blueri.se (ams.blueri.se [IPv6:2a03:6000:6f70:601::204]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 73CDB8351A for ; Thu, 13 Jan 2022 15:22:20 +0100 (CET) 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 ryzen.fritz.box (p5b0ac7de.dip0.t-ipconnect.de [91.10.199.222]) by ams.blueri.se (OpenSMTPD) with ESMTPSA id ef5630b7 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Thu, 13 Jan 2022 15:22:19 +0100 (CET) Date: Thu, 13 Jan 2022 15:22:17 +0100 From: Patrick Wildt To: Fabio Estevam Cc: Michael Walle , frieder.schrempf@kontron.de, heiko.thiery@gmail.com, hs@denx.de, marcel.ziswiler@toradex.com, peng.fan@oss.nxp.com, sbabic@denx.de, trini@konsulko.com, u-boot@lists.denx.de Subject: [PATCH v2 3/4] arm64: dts: imx8mm-u-boot.dtsi: use dash for node names Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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.2 at phobos.denx.de X-Virus-Status: Clean Some of the nodes were named using a underscore, so rectify this and consistenly use dashes. Signed-off-by: Patrick Wildt --- arch/arm/dts/imx8mm-u-boot.dtsi | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/arm/dts/imx8mm-u-boot.dtsi b/arch/arm/dts/imx8mm-u-boot.dtsi index 7882fe7316..3ea03a96d6 100644 --- a/arch/arm/dts/imx8mm-u-boot.dtsi +++ b/arch/arm/dts/imx8mm-u-boot.dtsi @@ -45,19 +45,19 @@ type = "blob-ext"; }; - 1d_dmem { + 1d-dmem { filename = "lpddr4_pmu_train_1d_dmem.bin"; size = <0x4000>; type = "blob-ext"; }; - 2d_imem { + 2d-imem { filename = "lpddr4_pmu_train_2d_imem.bin"; size = <0x8000>; type = "blob-ext"; }; - 2d_dmem { + 2d-dmem { filename = "lpddr4_pmu_train_2d_dmem.bin"; size = <0x4000>; type = "blob-ext"; @@ -93,7 +93,7 @@ load = ; type = "standalone"; - uboot_blob { + uboot-blob { filename = "u-boot-nodtb.bin"; type = "blob-ext"; }; @@ -107,7 +107,7 @@ load = <0x920000>; type = "firmware"; - atf_blob { + atf-blob { filename = "bl31.bin"; type = "blob-ext"; }; @@ -126,7 +126,7 @@ description = "NAME"; type = "flat_dt"; - uboot_fdt_blob { + uboot-fdt-blob { filename = "u-boot.dtb"; type = "blob-ext"; }; -- 2.34.1