diff options
| author | Akihiko Odaki <akihiko.odaki@daynix.com> | 2024-02-18 15:57:11 +0900 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-01-13 17:16:03 +0100 |
| commit | 8915c118599d47c8d73f0b5982d28289c3ad797f (patch) | |
| tree | db07cf2f4e754edef765e6700bef854a49a7ec04 /hw/core/qdev-hotplug.c | |
| parent | 8d2701072e44cda756148a29ef013a4b91316644 (diff) | |
| download | focaccia-qemu-8915c118599d47c8d73f0b5982d28289c3ad797f.tar.gz focaccia-qemu-8915c118599d47c8d73f0b5982d28289c3ad797f.zip | |
hw/qdev: Pass bus argument to qdev_hotplug_allowed()
In preparation of checking the parent bus is hot(un)pluggable in a few commits, pass a 'bus' argument to qdev_hotplug_allowed(). Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com> [PMD: Split from bigger patch, part 1/6] Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Message-Id: <20250110091908.64454-2-philmd@linaro.org>
Diffstat (limited to 'hw/core/qdev-hotplug.c')
| -rw-r--r-- | hw/core/qdev-hotplug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/core/qdev-hotplug.c b/hw/core/qdev-hotplug.c index d495d0e9c7..19fbb11a31 100644 --- a/hw/core/qdev-hotplug.c +++ b/hw/core/qdev-hotplug.c @@ -30,7 +30,7 @@ HotplugHandler *qdev_get_machine_hotplug_handler(DeviceState *dev) return NULL; } -bool qdev_hotplug_allowed(DeviceState *dev, Error **errp) +bool qdev_hotplug_allowed(DeviceState *dev, BusState *bus, Error **errp) { MachineState *machine; MachineClass *mc; |