hw/loongarch: Fix fdt memory node wrong 'reg'
commitb11f9814526b833b3a052be2559457b1affad7f5
authorSong Gao <gaosong@loongson.cn>
Fri, 26 Apr 2024 09:15:43 +0000 (26 17:15 +0800)
committerSong Gao <gaosong@loongson.cn>
Mon, 29 Apr 2024 02:25:56 +0000 (29 10:25 +0800)
treec28e7a140ec48d9afe4606b0944b533ac87c897a
parent6042385149a0fb3f4a51d264fc3dc42775819c79
hw/loongarch: Fix fdt memory node wrong 'reg'

The right fdt memory node like [1], not [2]

  [1]
        memory@0 {
                device_type = "memory";
                reg = <0x00 0x00 0x00 0x10000000>;
        };
  [2]
        memory@0 {
                device_type = "memory";
                reg = <0x02 0x00 0x02 0x10000000>;
        };

Reviewed-by: Bibo Mao <maobibo@loongson.cn>
Signed-off-by: Song Gao <gaosong@loongson.cn>
Message-Id: <20240426091551.2397867-10-gaosong@loongson.cn>
hw/loongarch/virt.c