Commit 6b5be4336a for qemu.org

commit 6b5be4336a580eca44c91a55e7b9f53673e53f1a
Author: Philippe Mathieu-Daudé <philmd@linaro.org>
Date:   Wed Feb 25 10:20:20 2026 +0100

    hw/core/machine: Remove hw_compat_2_9[] array

    The hw_compat_2_9[] array was only used by the pc-q35-2.9 and
    pc-i440fx-2.9 machines, which got removed. Remove it.

    Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
    Message-ID: <20250501210456.89071-16-philmd@linaro.org>
    Reviewed-by: Igor Mammedov <imammedo@redhat.com>
    Signed-off-by: Thomas Huth <thuth@redhat.com>
    Message-ID: <20260225092024.794595-13-thuth@redhat.com>

diff --git a/hw/core/machine.c b/hw/core/machine.c
index 81f806a1ba..b47bb411b6 100644
--- a/hw/core/machine.c
+++ b/hw/core/machine.c
@@ -264,14 +264,6 @@ GlobalProperty hw_compat_2_10[] = {
 };
 const size_t hw_compat_2_10_len = G_N_ELEMENTS(hw_compat_2_10);

-GlobalProperty hw_compat_2_9[] = {
-    { "pci-bridge", "shpc", "off" },
-    { "intel-iommu", "pt", "off" },
-    { "virtio-net-device", "x-mtu-bypass-backend", "off" },
-    { "pcie-root-port", "x-migrate-msix", "false" },
-};
-const size_t hw_compat_2_9_len = G_N_ELEMENTS(hw_compat_2_9);
-
 MachineState *current_machine;

 static char *machine_get_kernel(Object *obj, Error **errp)
diff --git a/include/hw/core/boards.h b/include/hw/core/boards.h
index a81c755541..bc3193ecbd 100644
--- a/include/hw/core/boards.h
+++ b/include/hw/core/boards.h
@@ -883,7 +883,4 @@ extern const size_t hw_compat_2_11_len;
 extern GlobalProperty hw_compat_2_10[];
 extern const size_t hw_compat_2_10_len;

-extern GlobalProperty hw_compat_2_9[];
-extern const size_t hw_compat_2_9_len;
-
 #endif