diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2018-12-14 13:30:48 +0000 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2018-12-14 13:30:48 +0000 |
| commit | 3c8133f973767460f8e42c9e656f2f3ed703d00d (patch) | |
| tree | c4c81c69036ee9f15608d4b4cf3ae035a269b09c /hw/intc/apic.c | |
| parent | 75693e14113c0d1c1ebc1e8405e00879d2a11c84 (diff) | |
| download | focaccia-qemu-3c8133f973767460f8e42c9e656f2f3ed703d00d.tar.gz focaccia-qemu-3c8133f973767460f8e42c9e656f2f3ed703d00d.zip | |
Rename cpu_physical_memory_write_rom() to address_space_write_rom()
The API of cpu_physical_memory_write_rom() is odd, because it takes an AddressSpace, unlike all the other cpu_physical_memory_* access functions. Rename it to address_space_write_rom(), and bring its API into line with address_space_write(). Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Message-id: 20181122133507.30950-3-peter.maydell@linaro.org
Diffstat (limited to 'hw/intc/apic.c')
| -rw-r--r-- | hw/intc/apic.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/hw/intc/apic.c b/hw/intc/apic.c index 97ffdd820f..c9dd65b3a0 100644 --- a/hw/intc/apic.c +++ b/hw/intc/apic.c @@ -122,9 +122,10 @@ static void apic_sync_vapic(APICCommonState *s, int sync_type) } vapic_state.irr = vector & 0xff; - cpu_physical_memory_write_rom(&address_space_memory, - s->vapic_paddr + start, - ((void *)&vapic_state) + start, length); + address_space_write_rom(&address_space_memory, + s->vapic_paddr + start, + MEMTXATTRS_UNSPECIFIED, + ((void *)&vapic_state) + start, length); } } |