qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH RFC 3/3] hw/pci-bridge: add the corresponding creati


From: Marcel Apfelbaum
Subject: [Qemu-devel] [PATCH RFC 3/3] hw/pci-bridge: add the corresponding creation priority flag
Date: Mon, 9 May 2016 20:47:36 +0300

Signed-off-by: Marcel Apfelbaum <address@hidden>
---
 hw/pci-bridge/pci_bridge_dev.c      | 1 +
 hw/pci-bridge/pci_expander_bridge.c | 2 ++
 2 files changed, 3 insertions(+)

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);
 }
 
-- 
2.4.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]