summary refs log tree commit diff stats
path: root/hw/isa.h
diff options
context:
space:
mode:
authorJulien Grall <julien.grall@citrix.com>2012-09-19 12:50:02 +0100
committerAndreas Färber <afaerber@suse.de>2012-12-04 14:50:21 +0100
commitac10027327e27c9b360452e01af3ef2147f5a26f (patch)
tree51aeb676b40036422d3a7adc15265aad6af8ba41 /hw/isa.h
parent16c6c80ac3a772b42a87b77dfdf0fdac7c607b0e (diff)
downloadfocaccia-qemu-ac10027327e27c9b360452e01af3ef2147f5a26f.tar.gz
focaccia-qemu-ac10027327e27c9b360452e01af3ef2147f5a26f.zip
isa: Add isa_address_space_io()
This function permits to retrieve ISA IO address space.
It will be usefull when we need to pass IO address space as argument.

Signed-off-by: Julien Grall <julien.grall@citrix.com>
Acked-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'hw/isa.h')
-rw-r--r--hw/isa.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/isa.h b/hw/isa.h
index f9382e8367..9d719fa3c8 100644
--- a/hw/isa.h
+++ b/hw/isa.h
@@ -43,6 +43,7 @@ void isa_bus_irqs(ISABus *bus, qemu_irq *irqs);
 qemu_irq isa_get_irq(ISADevice *dev, int isairq);
 void isa_init_irq(ISADevice *dev, qemu_irq *p, int isairq);
 MemoryRegion *isa_address_space(ISADevice *dev);
+MemoryRegion *isa_address_space_io(ISADevice *dev);
 ISADevice *isa_create(ISABus *bus, const char *name);
 ISADevice *isa_try_create(ISABus *bus, const char *name);
 ISADevice *isa_create_simple(ISABus *bus, const char *name);