summary refs log tree commit diff stats
path: root/hw/mips/mips_fulong2e.c
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2020-02-24 21:55:08 +0100
committerAleksandar Markovic <amarkovic@wavecomp.com>2020-02-27 14:18:47 +0100
commit3fab7f231198afa36a4d398569c82ee1824f86f4 (patch)
tree2c56fa9ff8f1d578204703164dc21649b96baea1 /hw/mips/mips_fulong2e.c
parent0009b4f32ea103b44ea3d61f515b5ff2d5dfc031 (diff)
downloadfocaccia-qemu-3fab7f231198afa36a4d398569c82ee1824f86f4.tar.gz
focaccia-qemu-3fab7f231198afa36a4d398569c82ee1824f86f4.zip
hw/mips: Use memory_region_init_rom() with read-only regions
This commit was produced with the Coccinelle script
scripts/coccinelle/memory-region-housekeeping.cocci.

Reviewed-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Message-Id: <20200224205533.23798-8-philmd@redhat.com>
Diffstat (limited to 'hw/mips/mips_fulong2e.c')
-rw-r--r--hw/mips/mips_fulong2e.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/mips/mips_fulong2e.c b/hw/mips/mips_fulong2e.c
index c373ab066b..4727b1d3a4 100644
--- a/hw/mips/mips_fulong2e.c
+++ b/hw/mips/mips_fulong2e.c
@@ -319,9 +319,8 @@ static void mips_fulong2e_init(MachineState *machine)
     }
 
     /* allocate RAM */
-    memory_region_init_ram(bios, NULL, "fulong2e.bios", BIOS_SIZE,
+    memory_region_init_rom(bios, NULL, "fulong2e.bios", BIOS_SIZE,
                            &error_fatal);
-    memory_region_set_readonly(bios, true);
 
     memory_region_add_subregion(address_space_mem, 0, machine->ram);
     memory_region_add_subregion(address_space_mem, 0x1fc00000LL, bios);