diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2016-08-31 13:35:16 +0300 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2016-08-31 17:40:18 +0300 |
commit | 766a1fe78fc3e4c0cc688340ff319b3b0863fb03 (patch) | |
tree | 31e42d912b2f86ef6745e177eda59d67c4aa14d3 /arch/arm/boot/dts/omap3-overo-base.dtsi | |
parent | 35852c68b2b216845da4f303c0b8c39547022f89 (diff) | |
download | linux-766a1fe78fc3e4c0cc688340ff319b3b0863fb03.tar.xz |
ARM: omap3: Add missing memory node in overo and torpedo boards
The skeleton.dtsi file was removed in ARM64 for different reasons as
explained in commit ("3ebee5a2e141 arm64: dts: kill skeleton.dtsi").
These also applies to ARM and it will also allow to get rid of the
following DTC warnings in the future:
"Node /memory has a reg or ranges property, but no unit name"
But these boards don't have a memory node defined, so removing the
skeleton.dtsi inclusion from omap3.dtsi will cause a change in the
compiled DTB. Add a dummy memory node so the compiled DTB doesn't
change if the skeleton.dtsi is removed from omap3.dtsi.
Eventually the correct starting addresses and sizes should be used
but I didn't find that information.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot/dts/omap3-overo-base.dtsi')
-rw-r--r-- | arch/arm/boot/dts/omap3-overo-base.dtsi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap3-overo-base.dtsi b/arch/arm/boot/dts/omap3-overo-base.dtsi index 3e946cac55f3..91b2e423c7c0 100644 --- a/arch/arm/boot/dts/omap3-overo-base.dtsi +++ b/arch/arm/boot/dts/omap3-overo-base.dtsi @@ -11,6 +11,12 @@ */ / { + + memory { + device_type = "memory"; + reg = <0 0>; + }; + pwmleds { compatible = "pwm-leds"; |