Commit e0b09c35 authored by Zhen Lei's avatar Zhen Lei Committed by Wei Xu
Browse files

ARM: dts: hisilicon: fix errors detected by root-node.yaml



Make the memory node name match the regex "^memory(@[0-9a-f]+)?$" which
is described in memory.yaml. Otherwise, it will be treated as root node,
and misreported by root-node.yaml.

Errors misreported by root-node.yaml:
/: memory: False schema does not allow {'device_type': ['memory'], 'reg':

Signed-off-by: default avatarZhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: default avatarWei Xu <xuwei5@hisilicon.com>
parent 8e9e8dd7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ aliases {
		serial0 = &uart0;
	};

	memory {
	memory@80000000 {
		device_type = "memory";
		reg = <0x80000000 0x40000000>;
	};
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ chosen {
		stdout-path = "serial0:115200n8";
	};

	memory {
	memory@40000000 {
		device_type = "memory";
		reg = <0x40000000 0x20000000>;
	};
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ cpu@1 {
		};
	};

	memory {
	memory@80000000 {
		device_type = "memory";
		reg = <0x80000000 0x80000000>;
	};
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ cpu@1 {
		};
	};

	memory {
	memory@0 {
		device_type = "memory";
		reg = <0x00000000 0x80000000>;
	};