summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2020-04-26 12:19:16 +0200
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2020-05-26 13:20:37 +0200
commit3e5fe8dd1fcb6aa3acd3e5b719bd0b9e69ddee6b (patch)
tree3200dd83e90461fa841ba9f8a606503ce3f2a8e3
parent1f8a6c8b3c3a9c6ea0b215a764a1c4f1d6141078 (diff)
downloadfocaccia-qemu-3e5fe8dd1fcb6aa3acd3e5b719bd0b9e69ddee6b.tar.gz
focaccia-qemu-3e5fe8dd1fcb6aa3acd3e5b719bd0b9e69ddee6b.zip
hw/mips/fuloong2e: Move code and update a comment
Move the RAM-related call closer to the RAM creation block,
rename the ROM comment.

Reviewed-by: Huacai Chen <chenhc@lemote.com>
Message-id: <20200510210128.18343-4-f4bug@amsat.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
-rw-r--r--hw/mips/mips_fulong2e.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/hw/mips/mips_fulong2e.c b/hw/mips/mips_fulong2e.c
index 05b9efa516..6996f5e3d1 100644
--- a/hw/mips/mips_fulong2e.c
+++ b/hw/mips/mips_fulong2e.c
@@ -315,12 +315,11 @@ static void mips_fulong2e_init(MachineState *machine)
         error_report("Invalid RAM size, should be 256MB");
         exit(EXIT_FAILURE);
     }
+    memory_region_add_subregion(address_space_mem, 0, machine->ram);
 
-    /* allocate RAM */
+    /* Boot ROM */
     memory_region_init_rom(bios, NULL, "fulong2e.bios", BIOS_SIZE,
                            &error_fatal);
-
-    memory_region_add_subregion(address_space_mem, 0, machine->ram);
     memory_region_add_subregion(address_space_mem, 0x1fc00000LL, bios);
 
     /*