diff options
author | Avi Kivity <avi@redhat.com> | 2012-02-08 17:07:26 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2012-02-29 13:44:42 +0200 |
commit | d7ec83e6b57f48cf07f663e232e4aa2b32bc33c7 (patch) | |
tree | a6d308d1a6d8c095b84c7184080aa1e7059a0780 /exec-obsolete.h | |
parent | 7a8499e88bffff66d90300d4f2018c938543b1cf (diff) |
memory: don't pass ->readable attribute to cpu_register_physical_memory_log
It can be derived from the MemoryRegion itself (which is why it is not
used there).
Signed-off-by: Avi Kivity <avi@redhat.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'exec-obsolete.h')
-rw-r--r-- | exec-obsolete.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exec-obsolete.h b/exec-obsolete.h index 94c23d0951..23ffbaaf4c 100644 --- a/exec-obsolete.h +++ b/exec-obsolete.h @@ -37,7 +37,7 @@ void cpu_unregister_io_memory(int table_address); struct MemoryRegionSection; void cpu_register_physical_memory_log(struct MemoryRegionSection *section, - bool readable, bool readonly); + bool readonly); void qemu_register_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size); void qemu_unregister_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size); |