summary refs log tree commit diff stats
path: root/hw/pci.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2011-09-26 08:00:40 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2011-09-26 08:00:40 -0500
commit4c54661feb0437eab99186a0e462524e18592b9c (patch)
tree7e2c4969ac479ca13bfacbd569af3c08be103bad /hw/pci.c
parent04970fd9339f75f5d21c094ab816a8e429dc1ff1 (diff)
parent2f290a8c3db977056e4840810d0dd42032745f21 (diff)
downloadfocaccia-qemu-4c54661feb0437eab99186a0e462524e18592b9c.tar.gz
focaccia-qemu-4c54661feb0437eab99186a0e462524e18592b9c.zip
Merge remote-tracking branch 'qemu-kvm-tmp/memory/batch' into staging
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;
+}