summary refs log tree commit diff stats
path: root/hw/mips/mips_r4k.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_r4k.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_r4k.c')
-rw-r--r--hw/mips/mips_r4k.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/mips/mips_r4k.c b/hw/mips/mips_r4k.c
index 258cd91578..ad8b75e286 100644
--- a/hw/mips/mips_r4k.c
+++ b/hw/mips/mips_r4k.c
@@ -237,9 +237,8 @@ void mips_r4k_init(MachineState *machine)
     dinfo = drive_get(IF_PFLASH, 0, 0);
     if ((bios_size > 0) && (bios_size <= BIOS_SIZE)) {
         bios = g_new(MemoryRegion, 1);
-        memory_region_init_ram(bios, NULL, "mips_r4k.bios", BIOS_SIZE,
+        memory_region_init_rom(bios, NULL, "mips_r4k.bios", BIOS_SIZE,
                                &error_fatal);
-        memory_region_set_readonly(bios, true);
         memory_region_add_subregion(get_system_memory(), 0x1fc00000, bios);
 
         load_image_targphys(filename, 0x1fc00000, BIOS_SIZE);