diff options
author | Alexandre Torgue <alexandre.torgue@st.com> | 2019-10-07 16:33:59 +0200 |
---|---|---|
committer | Alexandre Torgue <alexandre.torgue@st.com> | 2019-10-25 14:28:42 +0200 |
commit | 8fcdbdccce21c5d560ca7aaf208f183abe6a0eb6 (patch) | |
tree | 7ae9390e312679e8700516c55dafa4d77de2d739 /arch/arm/boot/dts/stm32429i-eval.dts | |
parent | ARM: dts: stm32: add focaltech touchscreen on stm32mp157c-dk2 board (diff) | |
download | linux-8fcdbdccce21c5d560ca7aaf208f183abe6a0eb6.tar.xz linux-8fcdbdccce21c5d560ca7aaf208f183abe6a0eb6.zip |
ARM: dts: stm32: fix memory nodes to match with DT validation tool
DT validation ("make dtbs_check") has shown that some memory nodes were not
correctly written. This commit fixes this kind of issue:
"stm32f746-disco.dt.yaml: /: memory: False schema does not allow
{'device_type': ['memory'], 'reg': [[3221225472, 8388608]]}"
Signed-off-by: Alexandre Torgue <alexandre.torgue@st.com>
Diffstat (limited to 'arch/arm/boot/dts/stm32429i-eval.dts')
-rw-r--r-- | arch/arm/boot/dts/stm32429i-eval.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/stm32429i-eval.dts b/arch/arm/boot/dts/stm32429i-eval.dts index ba08624c6237..36ac61d0828c 100644 --- a/arch/arm/boot/dts/stm32429i-eval.dts +++ b/arch/arm/boot/dts/stm32429i-eval.dts @@ -60,7 +60,7 @@ stdout-path = "serial0:115200n8"; }; - memory { + memory@00000000 { device_type = "memory"; reg = <0x00000000 0x2000000>; }; |