mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
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>
This commit is contained in:
parent
8d2701072e
commit
8915c11859
3 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue