diff options
| author | Markus Armbruster <armbru@redhat.com> | 2020-06-10 07:32:20 +0200 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2020-06-15 22:05:28 +0200 |
| commit | dbe4070e59ab86f4a25de9cd12ed56f9eb68049b (patch) | |
| tree | 6900e9388add69c385045b7320cfb61ea7413c2d /hw/misc/auxbus.c | |
| parent | 2194abd6231b36704b77adfdec2a32d38b7dc848 (diff) | |
| download | focaccia-qemu-dbe4070e59ab86f4a25de9cd12ed56f9eb68049b.tar.gz focaccia-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 'hw/misc/auxbus.c')
| -rw-r--r-- | hw/misc/auxbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/misc/auxbus.c b/hw/misc/auxbus.c index c37d235b0e..e93a35dd0a 100644 --- a/hw/misc/auxbus.c +++ b/hw/misc/auxbus.c @@ -62,7 +62,7 @@ static void aux_bus_class_init(ObjectClass *klass, void *data) k->print_dev = aux_slave_dev_print; } -AUXBus *aux_init_bus(DeviceState *parent, const char *name) +AUXBus *aux_bus_init(DeviceState *parent, const char *name) { AUXBus *bus; Object *auxtoi2c; @@ -225,7 +225,7 @@ static void aux_bridge_class_init(ObjectClass *oc, void *data) DeviceClass *dc = DEVICE_CLASS(oc); /* This device is private and is created only once for each - * aux-bus in aux_init_bus(..). So don't allow the user to add one. + * aux-bus in aux_bus_init(..). So don't allow the user to add one. */ dc->user_creatable = false; } |