mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
qbus: Rename qbus_create_inplace() to qbus_init()
Rename qbus_create_inplace() to qbus_init(); this is more in line with our usual naming convention for functions that in-place initialize objects. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Message-id: 20210923121153.23754-5-peter.maydell@linaro.org
This commit is contained in:
parent
8d4cdf01f8
commit
d637e1dc6d
32 changed files with 54 additions and 61 deletions
|
@ -35,7 +35,7 @@ void ipack_bus_init(IPackBus *bus, size_t bus_size,
|
|||
uint8_t n_slots,
|
||||
qemu_irq_handler handler)
|
||||
{
|
||||
qbus_create_inplace(bus, bus_size, TYPE_IPACK_BUS, parent, NULL);
|
||||
qbus_init(bus, bus_size, TYPE_IPACK_BUS, parent, NULL);
|
||||
bus->n_slots = n_slots;
|
||||
bus->set_irq = handler;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue