diff options
| author | Gustavo Romero <gustavo.romero@linaro.org> | 2025-05-04 21:56:38 +0000 |
|---|---|---|
| committer | Michael Tokarev <mjt@tls.msk.ru> | 2025-05-09 23:49:26 +0300 |
| commit | 07153411cd57e8d6933ab8a43035ed097deee696 (patch) | |
| tree | d092774bae7d5b90c259b624bce516842b1cf6fd /include/hw/acpi/pcihp.h | |
| parent | 4394d23e4952e8c8fbef7e3a132414e7891d8062 (diff) | |
| download | focaccia-qemu-07153411cd57e8d6933ab8a43035ed097deee696.tar.gz focaccia-qemu-07153411cd57e8d6933ab8a43035ed097deee696.zip | |
hw/acpi/pcihp: Fix typo in function name
Fix typo in QEMU's ACPI PCI hotplug API function name that checks whether a given bus is hotplug-capable. Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org> Reviewed-by: Eric Auger <eric.auger@redhat.com> Reviewed-by: Michael Tokarev <mjt@tls.msk.ru> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'include/hw/acpi/pcihp.h')
| -rw-r--r-- | include/hw/acpi/pcihp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/acpi/pcihp.h b/include/hw/acpi/pcihp.h index ac21a95913..a97904bada 100644 --- a/include/hw/acpi/pcihp.h +++ b/include/hw/acpi/pcihp.h @@ -58,7 +58,7 @@ typedef struct AcpiPciHpState { void acpi_pcihp_init(Object *owner, AcpiPciHpState *, PCIBus *root, MemoryRegion *io, uint16_t io_base); -bool acpi_pcihp_is_hotpluggbale_bus(AcpiPciHpState *s, BusState *bus); +bool acpi_pcihp_is_hotpluggable_bus(AcpiPciHpState *s, BusState *bus); void acpi_pcihp_device_pre_plug_cb(HotplugHandler *hotplug_dev, DeviceState *dev, Error **errp); void acpi_pcihp_device_plug_cb(HotplugHandler *hotplug_dev, AcpiPciHpState *s, |