aboutsummaryrefslogtreecommitdiff
path: root/include/hw
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2021-09-23 13:11:49 +0100
committerPeter Maydell <peter.maydell@linaro.org>2021-09-30 13:42:10 +0100
commit43417c0c27fd0851707a1f3bf50244d24aeeaf82 (patch)
tree2afea81033c2b17fa6498b9540197945b93a16a6 /include/hw
parent739e95f5741b8efd74331bb74b9446bcb5ede71e (diff)
downloadqemu-43417c0c27fd0851707a1f3bf50244d24aeeaf82.zip
qemu-43417c0c27fd0851707a1f3bf50244d24aeeaf82.tar.gz
qemu-43417c0c27fd0851707a1f3bf50244d24aeeaf82.tar.bz2
ipack: Rename ipack_bus_new_inplace() to ipack_bus_init()
Rename ipack_bus_new_inplace() to ipack_bus_init(), to bring it in to line with a "_init for in-place init, _new for allocate-and-return" convention. Drop the 'name' argument, because the only caller does not pass in a name. If a future caller does need to specify the bus name, we should create an ipack_bus_init_named() function at that point. 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-3-peter.maydell@linaro.org
Diffstat (limited to 'include/hw')
-rw-r--r--include/hw/ipack/ipack.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/hw/ipack/ipack.h b/include/hw/ipack/ipack.h
index 75014e7..cbcdda5 100644
--- a/include/hw/ipack/ipack.h
+++ b/include/hw/ipack/ipack.h
@@ -73,9 +73,9 @@ extern const VMStateDescription vmstate_ipack_device;
VMSTATE_STRUCT(_field, _state, 1, vmstate_ipack_device, IPackDevice)
IPackDevice *ipack_device_find(IPackBus *bus, int32_t slot);
-void ipack_bus_new_inplace(IPackBus *bus, size_t bus_size,
- DeviceState *parent,
- const char *name, uint8_t n_slots,
- qemu_irq_handler handler);
+void ipack_bus_init(IPackBus *bus, size_t bus_size,
+ DeviceState *parent,
+ uint8_t n_slots,
+ qemu_irq_handler handler);
#endif