diff options
author | Adam Ford <aford173@gmail.com> | 2016-10-21 08:34:59 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2016-11-09 15:45:14 -0700 |
commit | 80513a2b9f0448eadd10ae81a42229b33ef451fb (patch) | |
tree | f0d519a78ceb16b7cb38ffa3e6423aa7a90f4c80 /arch/arm | |
parent | 1219e3db7ecb59ab269e9c8b1a199d82b8d088bb (diff) | |
download | linux-80513a2b9f0448eadd10ae81a42229b33ef451fb.tar.bz2 |
ARM: omap3: Add missing memory node in SOM-LV
The skeleton.dtsi file was removed in ARM64 for different reasons as
explained in commit ("3ebee5a2e141 arm64: dts: kill skeleton.dtsi").
commit ("766a1fe78fc3 ARM: omap3: Add missing memory node") had
fixes for Torpedo and Overo boards, but this SOM-LV was missed.
This should help prevent the DTC warning:
"Node /memory has a reg or ranges property, but no unit name"
Signed-off-by: Adam Ford <aford173@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/boot/dts/logicpd-som-lv.dtsi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/logicpd-som-lv.dtsi b/arch/arm/boot/dts/logicpd-som-lv.dtsi index 0ff1c2de95bf..26cce4d18405 100644 --- a/arch/arm/boot/dts/logicpd-som-lv.dtsi +++ b/arch/arm/boot/dts/logicpd-som-lv.dtsi @@ -13,6 +13,11 @@ }; }; + memory@80000000 { + device_type = "memory"; + reg = <0x80000000 0>; + }; + wl12xx_vmmc: wl12xx_vmmc { compatible = "regulator-fixed"; regulator-name = "vwl1271"; |