diff options
author | Peter Maydell | 2021-09-23 14:11:52 +0200 |
---|---|---|
committer | Peter Maydell | 2021-09-30 14:44:08 +0200 |
commit | 9388d1701efa87095d31ed5f68793dfc82cdd47e (patch) | |
tree | 8883139092112b5341122c18ddc3c50158c23769 /hw/ssi | |
parent | qbus: Rename qbus_create_inplace() to qbus_init() (diff) | |
download | qemu-9388d1701efa87095d31ed5f68793dfc82cdd47e.tar.gz qemu-9388d1701efa87095d31ed5f68793dfc82cdd47e.tar.xz qemu-9388d1701efa87095d31ed5f68793dfc82cdd47e.zip |
qbus: Rename qbus_create() to qbus_new()
Rename the "allocate and return" qbus creation function to
qbus_new(), to bring it into line with our _init vs _new convention.
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>
Reviewed-by: Corey Minyard <cminyard@mvista.com>
Message-id: 20210923121153.23754-6-peter.maydell@linaro.org
Diffstat (limited to 'hw/ssi')
-rw-r--r-- | hw/ssi/ssi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ssi/ssi.c b/hw/ssi/ssi.c index e5d7ce9523..003931fb50 100644 --- a/hw/ssi/ssi.c +++ b/hw/ssi/ssi.c @@ -107,7 +107,7 @@ DeviceState *ssi_create_peripheral(SSIBus *bus, const char *name) SSIBus *ssi_create_bus(DeviceState *parent, const char *name) { BusState *bus; - bus = qbus_create(TYPE_SSI_BUS, parent, name); + bus = qbus_new(TYPE_SSI_BUS, parent, name); return SSI_BUS(bus); } |