diff options
author | Fabio Estevam <festevam@gmail.com> | 2018-11-06 00:14:46 +0300 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2018-12-10 05:02:06 +0300 |
commit | e8fd17b900a4a1e3a8bef7b44727cbad35db05a7 (patch) | |
tree | 1ac19b5cdf8e567b09dabdbe1083641843472bdc /arch/arm/boot/dts/imx53-m53.dtsi | |
parent | 6a9681168b83c62abfa457c709f2f4b126bd6b92 (diff) | |
download | linux-e8fd17b900a4a1e3a8bef7b44727cbad35db05a7.tar.xz |
ARM: dts: imx53: Fix memory node duplication
Boards based on imx53 have duplicate memory nodes:
- One coming from the board dts file: memory@
- One coming from the imx53.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>
Diffstat (limited to 'arch/arm/boot/dts/imx53-m53.dtsi')
-rw-r--r-- | arch/arm/boot/dts/imx53-m53.dtsi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/imx53-m53.dtsi b/arch/arm/boot/dts/imx53-m53.dtsi index ce45f08e3051..db2e5bce9b6a 100644 --- a/arch/arm/boot/dts/imx53-m53.dtsi +++ b/arch/arm/boot/dts/imx53-m53.dtsi @@ -16,6 +16,7 @@ compatible = "aries,imx53-m53", "denx,imx53-m53", "fsl,imx53"; memory@70000000 { + device_type = "memory"; reg = <0x70000000 0x20000000>, <0xb0000000 0x20000000>; }; |