diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-02-24 19:50:18 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-03-17 15:18:46 +0100 |
commit | 16260006acf8f3aee589b3fd26a1bbbf7b78ae4b (patch) | |
tree | b550ba01b917ab5cfbe1989408c23904895a0bd0 /hw/arm/exynos4210.c | |
parent | d3ec684d70d98a9fbc56fda1b611d039c90d0c5f (diff) | |
download | qemu-16260006acf8f3aee589b3fd26a1bbbf7b78ae4b.zip qemu-16260006acf8f3aee589b3fd26a1bbbf7b78ae4b.tar.gz qemu-16260006acf8f3aee589b3fd26a1bbbf7b78ae4b.tar.bz2 |
hw/arm: Use memory_region_init_rom() with read-only regions
This commit was produced with the Coccinelle script
scripts/coccinelle/memory-region-housekeeping.cocci.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'hw/arm/exynos4210.c')
-rw-r--r-- | hw/arm/exynos4210.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/arm/exynos4210.c b/hw/arm/exynos4210.c index 59a27bd..3af6502 100644 --- a/hw/arm/exynos4210.c +++ b/hw/arm/exynos4210.c @@ -311,9 +311,8 @@ static void exynos4210_realize(DeviceState *socdev, Error **errp) &s->chipid_mem); /* Internal ROM */ - memory_region_init_ram(&s->irom_mem, NULL, "exynos4210.irom", + memory_region_init_rom(&s->irom_mem, NULL, "exynos4210.irom", EXYNOS4210_IROM_SIZE, &error_fatal); - memory_region_set_readonly(&s->irom_mem, true); memory_region_add_subregion(system_mem, EXYNOS4210_IROM_BASE_ADDR, &s->irom_mem); /* mirror of iROM */ |