diff options
author | Avi Kivity <avi@redhat.com> | 2012-01-08 19:46:17 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2012-02-29 13:44:40 +0200 |
commit | de58ac72b6a062d1a61478284c0c0f8a0428613e (patch) | |
tree | ef86f1e965826d0b9dd42d1092ad3ef617c26845 /ioport.h | |
parent | 9d4df9c02866f39d3eef105033091f367cc7c29e (diff) |
ioport: change portio_list not to use memory_region_set_offset()
memory_region_set_offset() will be going away soon, so don't use it.
Use an alias instead.
Signed-off-by: Avi Kivity <avi@redhat.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'ioport.h')
-rw-r--r-- | ioport.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -60,6 +60,7 @@ typedef struct PortioList { struct MemoryRegion *address_space; unsigned nr; struct MemoryRegion **regions; + struct MemoryRegion **aliases; void *opaque; const char *name; } PortioList; |