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: Zhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: Wei Xu <xuwei5@hisilicon.com>
This commit is contained in:
Zhen Lei 2020-10-12 14:12:20 +08:00 committed by Wei Xu
parent 8e9e8dd7ce
commit e0b09c35ae
4 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@
serial0 = &uart0;
};
memory {
memory@80000000 {
device_type = "memory";
reg = <0x80000000 0x40000000>;
};

View File

@ -17,7 +17,7 @@
stdout-path = "serial0:115200n8";
};
memory {
memory@40000000 {
device_type = "memory";
reg = <0x40000000 0x20000000>;
};

View File

@ -37,7 +37,7 @@
};
};
memory {
memory@80000000 {
device_type = "memory";
reg = <0x80000000 0x80000000>;
};

View File

@ -35,7 +35,7 @@
};
};
memory {
memory@0 {
device_type = "memory";
reg = <0x00000000 0x80000000>;
};