[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC 01/24] hw/pci/pcie_port: Fix pcie_slot_is_hotpluggbale_bus typo
From: |
Eric Auger |
Subject: |
[RFC 01/24] hw/pci/pcie_port: Fix pcie_slot_is_hotpluggbale_bus typo |
Date: |
Mon, 28 Apr 2025 12:25:27 +0200 |
Signed-off-by: Eric Auger <eric.auger@redhat.com>
---
hw/pci/pcie_port.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/pci/pcie_port.c b/hw/pci/pcie_port.c
index c73db30e98..072500ed34 100644
--- a/hw/pci/pcie_port.c
+++ b/hw/pci/pcie_port.c
@@ -188,7 +188,7 @@ int pcie_count_ds_ports(PCIBus *bus)
return dsp_count;
}
-static bool pcie_slot_is_hotpluggbale_bus(HotplugHandler *plug_handler,
+static bool pcie_slot_is_hotpluggable_bus(HotplugHandler *plug_handler,
BusState *bus)
{
PCIESlot *s = PCIE_SLOT(bus->parent);
@@ -221,7 +221,7 @@ static void pcie_slot_class_init(ObjectClass *oc, void
*data)
hc->plug = pcie_cap_slot_plug_cb;
hc->unplug = pcie_cap_slot_unplug_cb;
hc->unplug_request = pcie_cap_slot_unplug_request_cb;
- hc->is_hotpluggable_bus = pcie_slot_is_hotpluggbale_bus;
+ hc->is_hotpluggable_bus = pcie_slot_is_hotpluggable_bus;
}
static const TypeInfo pcie_slot_type_info = {
--
2.49.0
- [RFC 00/24] APCI PCI Hotplug support on ARM, Eric Auger, 2025/04/28
- [RFC 02/24] hw/acpi/ged: Fix wrong identation, Eric Auger, 2025/04/28
- [RFC 01/24] hw/pci/pcie_port: Fix pcie_slot_is_hotpluggbale_bus typo,
Eric Auger <=
- [RFC 04/24] hw/i386/acpi-build: Make aml_pci_device_dsm() static, Eric Auger, 2025/04/28
- [RFC 03/24] hw/i386/acpi-build: Fix build_append_notfication_callback typo, Eric Auger, 2025/04/28
- [RFC 05/24] hw/arm/virt: Introduce machine state acpi pcihp flags and props, Eric Auger, 2025/04/28
- [RFC 06/24] hw/acpi: Rename and move build_x86_acpi_pci_hotplug to pcihp, Eric Auger, 2025/04/28
- [RFC 08/24] hw/pci-host/gpex-acpi: Split host bridge OSC and DSM generation, Eric Auger, 2025/04/28
- [RFC 07/24] hw/pci-host/gpex-acpi: Add native_pci_hotplug arg to acpi_dsdt_add_pci_osc, Eric Auger, 2025/04/28
- [RFC 09/24] hw/pci-host/gpex-acpi: Propagate hotplug type info from virt machine downto gpex, Eric Auger, 2025/04/28
- [RFC 10/24] hw/i386/acpi-build: Turn build_q35_osc_method into a generic method, Eric Auger, 2025/04/28
- [RFC 12/24] hw/i386/acpi-build: Introduce build_append_pcihp_resources() helper, Eric Auger, 2025/04/28
- [RFC 13/24] hw/acpi/pcihp: Add an AmlRegionSpace arg to build_acpi_pci_hotplug, Eric Auger, 2025/04/28