diff options
Diffstat (limited to 'hw/pci.c')
| -rw-r--r-- | hw/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pci.c b/hw/pci.c index 71d9227a2e..f592925d06 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -135,7 +135,7 @@ static PCIBus *pci_register_secondary_bus(PCIDevice *dev, pci_map_irq_fn map_irq { PCIBus *bus; - bus = FROM_QBUS(PCIBus, qbus_create(&pci_bus_info, &dev->qdev, NULL)); + bus = qemu_mallocz(sizeof(PCIBus)); bus->map_irq = map_irq; bus->parent_dev = dev; bus->next = dev->bus->next; |