diff options
author | Alexandre Torgue <alexandre.torgue@st.com> | 2019-10-07 17:33:59 +0300 |
---|---|---|
committer | Alexandre Torgue <alexandre.torgue@st.com> | 2019-10-25 15:28:42 +0300 |
commit | 8fcdbdccce21c5d560ca7aaf208f183abe6a0eb6 (patch) | |
tree | 7ae9390e312679e8700516c55dafa4d77de2d739 /arch/arm/boot/dts/stm32746g-eval.dts | |
parent | 7e6c337f689475c5071a5fe49d6074e5b7c690ee (diff) | |
download | linux-8fcdbdccce21c5d560ca7aaf208f183abe6a0eb6.tar.xz |
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/stm32746g-eval.dts')
-rw-r--r-- | arch/arm/boot/dts/stm32746g-eval.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/stm32746g-eval.dts b/arch/arm/boot/dts/stm32746g-eval.dts index 2b1664884ae7..d7bb2027cfaa 100644 --- a/arch/arm/boot/dts/stm32746g-eval.dts +++ b/arch/arm/boot/dts/stm32746g-eval.dts @@ -55,7 +55,7 @@ stdout-path = "serial0:115200n8"; }; - memory { + memory@c0000000 { device_type = "memory"; reg = <0xc0000000 0x2000000>; }; |