diff options
author | Markus Armbruster | 2020-06-10 07:32:20 +0200 |
---|---|---|
committer | Markus Armbruster | 2020-06-15 22:05:28 +0200 |
commit | dbe4070e59ab86f4a25de9cd12ed56f9eb68049b (patch) | |
tree | 6900e9388add69c385045b7320cfb61ea7413c2d /include/hw/misc | |
parent | qdev: qdev_create(), qdev_try_create() are now unused, drop (diff) | |
download | qemu-dbe4070e59ab86f4a25de9cd12ed56f9eb68049b.tar.gz qemu-dbe4070e59ab86f4a25de9cd12ed56f9eb68049b.tar.xz qemu-dbe4070e59ab86f4a25de9cd12ed56f9eb68049b.zip |
auxbus: Rename aux_init_bus() to aux_bus_init()
Suggested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-32-armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'include/hw/misc')
-rw-r--r-- | include/hw/misc/auxbus.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/misc/auxbus.h b/include/hw/misc/auxbus.h index a539a98c4b..5cfd7a9284 100644 --- a/include/hw/misc/auxbus.h +++ b/include/hw/misc/auxbus.h @@ -84,14 +84,14 @@ struct AUXSlave { }; /** - * aux_init_bus: Initialize an AUX bus. + * aux_bus_init: Initialize an AUX bus. * * Returns the new AUX bus created. * * @parent The device where this bus is located. * @name The name of the bus. */ -AUXBus *aux_init_bus(DeviceState *parent, const char *name); +AUXBus *aux_bus_init(DeviceState *parent, const char *name); /* * aux_request: Make a request on the bus. |