From c08be1ad96ccdb7df63c7c9146ce1808bec20d2f Mon Sep 17 00:00:00 2001 From: Fabio Estevam Date: Tue, 27 Feb 2018 23:13:35 -0300 Subject: ARM: dts: imx5: Pass the memory unit-address Pass the memory unit-address to fix the following build warnings with W=1: arch/arm/boot/dts/imx51-zii-rdu1.dtb: Warning (unit_address_vs_reg): Node /memory has a reg or ranges property, but no unit name arch/arm/boot/dts/imx53-tx53-x03x.dtb: Warning (unit_address_vs_reg): Node /memory has a reg or ranges property, but no unit name arch/arm/boot/dts/imx53-tx53-x13x.dtb: Warning (unit_address_vs_reg): Node /memory has a reg or ranges property, but no unit name In theses cases an empty memory node is passed, which will be filled by the bootloader. Passing the memory base address still allows the bootloader to fill the memory size. Signed-off-by: Fabio Estevam Signed-off-by: Shawn Guo --- arch/arm/boot/dts/imx53-tx53.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch/arm/boot/dts/imx53-tx53.dtsi') diff --git a/arch/arm/boot/dts/imx53-tx53.dtsi b/arch/arm/boot/dts/imx53-tx53.dtsi index e77dd0a4e1b9..69a2af7d6c11 100644 --- a/arch/arm/boot/dts/imx53-tx53.dtsi +++ b/arch/arm/boot/dts/imx53-tx53.dtsi @@ -50,8 +50,8 @@ compatible = "karo,tx53", "fsl,imx53"; /* Will be filled by the bootloader */ - memory { - reg = <0 0>; + memory@70000000 { + reg = <0x70000000 0>; }; aliases { -- cgit v1.2.3