mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
qdev: Convert to qbus_realize(), qbus_unrealize()
I'm going to convert device realization to qdev_realize() with the help of Coccinelle. Convert bus realization to qbus_realize() first, to get it out of Coccinelle's way. Readability improves. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20200610053247.1583243-7-armbru@redhat.com>
This commit is contained in:
parent
4e3a6778b0
commit
f1483b466d
2 changed files with 4 additions and 8 deletions
|
@ -456,7 +456,7 @@ void pci_root_bus_cleanup(PCIBus *bus)
|
|||
{
|
||||
pci_bus_uninit(bus);
|
||||
/* the caller of the unplug hotplug handler will delete this device */
|
||||
object_property_set_bool(OBJECT(bus), false, "realized", &error_abort);
|
||||
qbus_unrealize(BUS(bus));
|
||||
}
|
||||
|
||||
void pci_bus_irqs(PCIBus *bus, pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue