summary refs log tree commit diff stats
path: root/hw/core
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2021-09-23 13:11:52 +0100
committerPeter Maydell <peter.maydell@linaro.org>2021-09-30 13:44:08 +0100
commit9388d1701efa87095d31ed5f68793dfc82cdd47e (patch)
tree8883139092112b5341122c18ddc3c50158c23769 /hw/core
parentd637e1dc6de0e171dca6fbb5384668c642aa5ab6 (diff)
downloadfocaccia-qemu-9388d1701efa87095d31ed5f68793dfc82cdd47e.tar.gz
focaccia-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/core')
-rw-r--r--hw/core/bus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/core/bus.c b/hw/core/bus.c
index cec4998502..c7831b5293 100644
--- a/hw/core/bus.c
+++ b/hw/core/bus.c
@@ -159,7 +159,7 @@ void qbus_init(void *bus, size_t size, const char *typename,
     qbus_init_internal(bus, parent, name);
 }
 
-BusState *qbus_create(const char *typename, DeviceState *parent, const char *name)
+BusState *qbus_new(const char *typename, DeviceState *parent, const char *name)
 {
     BusState *bus;