Commit 8fcdbdcc authored by Alexandre Torgue's avatar Alexandre Torgue
Browse files

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: default avatarAlexandre Torgue <alexandre.torgue@st.com>
parent 7e6c337f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@
		stdout-path = "serial0:115200n8";
	};

	memory {
	memory@00000000 {
		device_type = "memory";
		reg = <0x00000000 0x2000000>;
	};
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@
		stdout-path = "serial0:115200n8";
	};

	memory {
	memory@c0000000 {
		device_type = "memory";
		reg = <0xc0000000 0x2000000>;
	};
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@
		stdout-path = "serial0:115200n8";
	};

	memory {
	memory@90000000 {
		device_type = "memory";
		reg = <0x90000000 0x800000>;
	};
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@
		stdout-path = "serial0:115200n8";
	};

	memory {
	memory@00000000 {
		device_type = "memory";
		reg = <0x00000000 0x1000000>;
	};
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@
		stdout-path = "serial0:115200n8";
	};

	memory {
	memory@c0000000 {
		device_type = "memory";
		reg = <0xC0000000 0x800000>;
	};
Loading