]> git.ipfire.org Git - thirdparty/qemu.git/commit
hw/loongarch: Fix fdt memory node wrong 'reg'
authorSong Gao <gaosong@loongson.cn>
Fri, 26 Apr 2024 09:15:43 +0000 (17:15 +0800)
committerMichael Tokarev <mjt@tls.msk.ru>
Mon, 27 May 2024 04:50:35 +0000 (07:50 +0300)
commit16b1ecee52effa3346fb34dcc351e4645e4ab53e
treed9aa374ff49ebb11cdfd89d4fa49fd874d854daa
parentd27df7187bd67ec9abaffcd2af23a89bae948bf8
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>
(cherry picked from commit b11f9814526b833b3a052be2559457b1affad7f5)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
hw/loongarch/virt.c