diff mbox

[RFC,3/3] hw/pci-bridge: add the corresponding creation priority flag

Message ID 1462816056-17463-4-git-send-email-marcel@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Marcel Apfelbaum May 9, 2016, 5:47 p.m. UTC
Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
---
 hw/pci-bridge/pci_bridge_dev.c      | 1 +
 hw/pci-bridge/pci_expander_bridge.c | 2 ++
 2 files changed, 3 insertions(+)
diff mbox

Patch

diff --git a/hw/pci-bridge/pci_bridge_dev.c b/hw/pci-bridge/pci_bridge_dev.c
index 7b582e9..eb552c4 100644
--- a/hw/pci-bridge/pci_bridge_dev.c
+++ b/hw/pci-bridge/pci_bridge_dev.c
@@ -210,6 +210,7 @@  static void pci_bridge_dev_class_init(ObjectClass *klass, void *data)
     dc->reset = qdev_pci_bridge_dev_reset;
     dc->props = pci_bridge_dev_properties;
     dc->vmsd = &pci_bridge_dev_vmstate;
+    dc->creation_priority = DEVICE_PRIO_BRIDGE;
     set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
     hc->plug = pci_bridge_dev_hotplug_cb;
     hc->unplug_request = pci_bridge_dev_hot_unplug_request_cb;
diff --git a/hw/pci-bridge/pci_expander_bridge.c b/hw/pci-bridge/pci_expander_bridge.c
index 5e7e546..e012eab 100644
--- a/hw/pci-bridge/pci_expander_bridge.c
+++ b/hw/pci-bridge/pci_expander_bridge.c
@@ -302,6 +302,7 @@  static void pxb_dev_class_init(ObjectClass *klass, void *data)
 
     dc->desc = "PCI Expander Bridge";
     dc->props = pxb_dev_properties;
+    dc->creation_priority = DEVICE_PRIO_HOSTBRIDGE;
     set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
 }
 
@@ -335,6 +336,7 @@  static void pxb_pcie_dev_class_init(ObjectClass *klass, void *data)
 
     dc->desc = "PCI Express Expander Bridge";
     dc->props = pxb_dev_properties;
+    dc->creation_priority = DEVICE_PRIO_HOSTBRIDGE;
     set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
 }