diff mbox

[v4,06/11] versatile_pci: Put the host bridge PCI device at slot 29

Message ID 1365263076-16909-7-git-send-email-peter.maydell@linaro.org
State Accepted
Commit 5f37ef92b7690423ac6311d3c597e182fc5f8fe6
Headers show

Commit Message

Peter Maydell April 6, 2013, 3:44 p.m. UTC
On real hardware the host bridge appears as a PCI device in slot 29,
so make QEMU put its host bridge in that slot too.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Acked-by: Paul Brook <paul@codesourcery.com>
---
 hw/versatile_pci.c |    2 ++
 1 file changed, 2 insertions(+)
diff mbox

Patch

diff --git a/hw/versatile_pci.c b/hw/versatile_pci.c
index ce5bdf2..8f8612c 100644
--- a/hw/versatile_pci.c
+++ b/hw/versatile_pci.c
@@ -87,6 +87,8 @@  static void pci_vpb_init(Object *obj)
 
     object_initialize(&s->pci_dev, TYPE_VERSATILE_PCI_HOST);
     qdev_set_parent_bus(DEVICE(&s->pci_dev), BUS(&s->pci_bus));
+    object_property_set_int(OBJECT(&s->pci_dev), PCI_DEVFN(29, 0), "addr",
+                            NULL);
 }
 
 static void pci_vpb_realize(DeviceState *dev, Error **errp)