diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2021-09-23 13:11:51 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2021-09-30 13:42:10 +0100 |
| commit | d637e1dc6de0e171dca6fbb5384668c642aa5ab6 (patch) | |
| tree | 8d1ba46048cf7c6bb01605029cbf3d15a7a81d38 /hw/ipack/ipack.c | |
| parent | 8d4cdf01f89fd834b952df2dd08f55e897a72ea8 (diff) | |
| download | focaccia-qemu-d637e1dc6de0e171dca6fbb5384668c642aa5ab6.tar.gz focaccia-qemu-d637e1dc6de0e171dca6fbb5384668c642aa5ab6.zip | |
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
Diffstat (limited to 'hw/ipack/ipack.c')
| -rw-r--r-- | hw/ipack/ipack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ipack/ipack.c b/hw/ipack/ipack.c index d28e7f6449..ae20f36da6 100644 --- a/hw/ipack/ipack.c +++ b/hw/ipack/ipack.c @@ -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; } |