Commit 67b0c007c6 for qemu.org

commit 67b0c007c6a8200e351616a0075bc5796bbbc551
Author: Philippe Mathieu-Daudé <philmd@linaro.org>
Date:   Fri May 2 01:01:20 2025 +0200

    hw/core/machine: Remove hw_compat_2_10[] array

    The hw_compat_2_10[] array was only used by the pc-q35-2.10,
    pc-i440fx-2.10 and s390-ccw-virtio-2.10 machines, which got
    removed. Remove it.

    Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
    Message-ID: <20250501230129.2596-3-philmd@linaro.org>
    Reviewed-by: Thomas Huth <thuth@redhat.com>
    Signed-off-by: Thomas Huth <thuth@redhat.com>

diff --git a/hw/core/machine.c b/hw/core/machine.c
index b47bb411b6..285adf1e07 100644
--- a/hw/core/machine.c
+++ b/hw/core/machine.c
@@ -258,12 +258,6 @@ GlobalProperty hw_compat_2_11[] = {
 };
 const size_t hw_compat_2_11_len = G_N_ELEMENTS(hw_compat_2_11);

-GlobalProperty hw_compat_2_10[] = {
-    { "virtio-mouse-device", "wheel-axis", "false" },
-    { "virtio-tablet-device", "wheel-axis", "false" },
-};
-const size_t hw_compat_2_10_len = G_N_ELEMENTS(hw_compat_2_10);
-
 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 bc3193ecbd..54988ecbcf 100644
--- a/include/hw/core/boards.h
+++ b/include/hw/core/boards.h
@@ -880,7 +880,4 @@ extern const size_t hw_compat_2_12_len;
 extern GlobalProperty hw_compat_2_11[];
 extern const size_t hw_compat_2_11_len;

-extern GlobalProperty hw_compat_2_10[];
-extern const size_t hw_compat_2_10_len;
-
 #endif