summaryrefslogtreecommitdiff
path: root/exec.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2013-05-24 14:37:28 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2013-05-29 16:26:41 +0200
commit0844e007624acb6dbf45bfb232286ce9502b424e (patch)
treead0170e9d3db1f44bbb0cdc878d86fa872173be4 /exec.c
parent8f3e03cb73dce9eac207cfe0f37d87d6490421a0 (diff)
downloadqemu-0844e007624acb6dbf45bfb232286ce9502b424e.tar.gz
exec: make io_mem_unassigned private
There is no reason to avoid a recompile before accessing unassigned memory. In the end it will be treated as MMIO anyway. Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/exec.c b/exec.c
index 7728ea38cb..7e22980e77 100644
--- a/exec.c
+++ b/exec.c
@@ -66,8 +66,8 @@ AddressSpace address_space_io;
AddressSpace address_space_memory;
DMAContext dma_context_memory;
-MemoryRegion io_mem_rom, io_mem_unassigned, io_mem_notdirty;
-static MemoryRegion io_mem_subpage_ram;
+MemoryRegion io_mem_rom, io_mem_notdirty;
+static MemoryRegion io_mem_unassigned, io_mem_subpage_ram;
#endif