ARM: dts: imx28: Fix memory node duplication
authorFabio Estevam <festevam@gmail.com>
Mon, 26 Nov 2018 12:08:56 +0000 (10:08 -0200)
committerShawn Guo <shawnguo@kernel.org>
Mon, 10 Dec 2018 02:02:47 +0000 (10:02 +0800)
Boards based on imx28 have duplicate memory nodes:

- One coming from the board dts file: memory@

- One coming from the imx28.dtsi file.

Fix the duplication by removing the memory node from the dtsi file
and by adding 'device_type = "memory";' in the board dts.

Reported-by: Rob Herring <robh@kernel.org>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
18 files changed:
arch/arm/boot/dts/imx28-apf28.dts
arch/arm/boot/dts/imx28-apx4devkit.dts
arch/arm/boot/dts/imx28-cfa10036.dts
arch/arm/boot/dts/imx28-duckbill-2-485.dts
arch/arm/boot/dts/imx28-duckbill-2-enocean.dts
arch/arm/boot/dts/imx28-duckbill-2-spi.dts
arch/arm/boot/dts/imx28-duckbill-2.dts
arch/arm/boot/dts/imx28-duckbill.dts
arch/arm/boot/dts/imx28-eukrea-mbmx283lc.dts
arch/arm/boot/dts/imx28-eukrea-mbmx287lc.dts
arch/arm/boot/dts/imx28-evk.dts
arch/arm/boot/dts/imx28-m28.dtsi
arch/arm/boot/dts/imx28-m28cu3.dts
arch/arm/boot/dts/imx28-m28evk.dts
arch/arm/boot/dts/imx28-sps1.dts
arch/arm/boot/dts/imx28-ts4600.dts
arch/arm/boot/dts/imx28-tx28.dts
arch/arm/boot/dts/imx28.dtsi

index bab7834..b6976fb 100644 (file)
@@ -17,6 +17,7 @@
        compatible = "armadeus,imx28-apf28", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x08000000>;
        };
 
index 6c9b498..3a184d1 100644 (file)
@@ -7,6 +7,7 @@
        compatible = "bluegiga,apx4devkit", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x04000000>;
        };
 
index 8337ca2..d3e3622 100644 (file)
@@ -17,6 +17,7 @@
        compatible = "crystalfontz,cfa10036", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x08000000>;
        };
 
index f4f2b3d..19957c2 100644 (file)
@@ -20,6 +20,7 @@
        compatible = "i2se,duckbill-2-485", "i2se,duckbill-2", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x08000000>;
        };
 
index 71d0fcb..4982131 100644 (file)
@@ -21,6 +21,7 @@
        compatible = "i2se,duckbill-2-enocean", "i2se,duckbill-2", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x08000000>;
        };
 
index 6580ec6..d38d35b 100644 (file)
@@ -24,6 +24,7 @@
        };
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x08000000>;
        };
 
index 693634e..38160fb 100644 (file)
@@ -20,6 +20,7 @@
        compatible = "i2se,duckbill-2", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x08000000>;
        };
 
index 16f5244..7139c07 100644 (file)
@@ -19,6 +19,7 @@
        compatible = "i2se,duckbill", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x08000000>;
        };
 
index b70f334..28dab6d 100644 (file)
@@ -24,6 +24,7 @@
        compatible = "eukrea,mbmx283lc", "eukrea,mbmx28lc", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x04000000>;
        };
 };
index 65efb78..7c3d552 100644 (file)
@@ -23,6 +23,7 @@
        compatible = "eukrea,mbmx287lc", "eukrea,mbmx283lc", "eukrea,mbmx28lc", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x08000000>;
        };
 };
index 5778300..96c1d10 100644 (file)
@@ -10,6 +10,7 @@
        compatible = "fsl,imx28-evk", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x08000000>;
        };
 
index 0ec415e..298ad28 100644 (file)
@@ -16,6 +16,7 @@
        compatible = "aries,m28", "denx,m28", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x08000000>;
        };
 
index 8883d36..ece3310 100644 (file)
@@ -17,6 +17,7 @@
        compatible = "msr,m28cu3", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x08000000>;
        };
 
index 893886d..7d64301 100644 (file)
@@ -1,4 +1,5 @@
 /*
+
  * Copyright (C) 2012 Marek Vasut <marex@denx.de>
  *
  * The code contained herein is licensed under the GNU General Public
index ea9212f..42c88a6 100644 (file)
@@ -17,6 +17,7 @@
        compatible = "schulercontrol,imx28-sps1", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x08000000>;
        };
 
index dccdd6b..e3fd411 100644 (file)
@@ -20,6 +20,7 @@
        compatible = "technologic,imx28-ts4600", "fsl,imx28";
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0x10000000>;   /* 256MB */
        };
 
index b8f4643..164254c 100644 (file)
@@ -66,6 +66,7 @@
        };
 
        memory@40000000 {
+               device_type = "memory";
                reg = <0x40000000 0>; /* will be filled in by U-Boot */
        };
 
index 2b7efb6..e14d8ef 100644 (file)
         * The decompressor and also some bootloaders rely on a
         * pre-existing /chosen node to be available to insert the
         * command line and merge other ATAGS info.
-        * Also for U-Boot there must be a pre-existing /memory node.
         */
        chosen {};
-       memory { device_type = "memory"; };
 
        aliases {
                ethernet0 = &mac0;