summaryrefslogtreecommitdiff
path: root/hw/pci.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2011-08-10 15:28:10 -0700
committerAvi Kivity <avi@redhat.com>2011-09-25 14:57:47 +0300
commite11d64390ba076d8a293e422dad3027f9adb9430 (patch)
tree361e9b79fe82781ec415809cdfd989701416e2d6 /hw/pci.c
parent1ce9ce6a6184f0192015ba9adf1123d89cd47a7b (diff)
downloadqemu-e11d64390ba076d8a293e422dad3027f9adb9430.tar.gz
pci: add pci_address_space_io()
Returns the I/O address space. Useful for implementing PCI-ISA bridge devices. Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/pci.c')
-rw-r--r--hw/pci.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/pci.c b/hw/pci.c
index 5c4f071d28..749e8d86ca 100644
--- a/hw/pci.c
+++ b/hw/pci.c
@@ -2124,3 +2124,8 @@ MemoryRegion *pci_address_space(PCIDevice *dev)
{
return dev->bus->address_space_mem;
}
+
+MemoryRegion *pci_address_space_io(PCIDevice *dev)
+{
+ return dev->bus->address_space_io;
+}