diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-01-16 15:59:35 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2025-05-06 15:01:23 +0100 |
commit | 390becbf7faa8e7ecb10386ec21d52e1fcb16c96 (patch) | |
tree | b565d3e274fc138962ee93e9e937e8390cced2b5 | |
parent | 7f48918a372120a63f18712aa27de5e13b76bbf7 (diff) | |
download | qemu-390becbf7faa8e7ecb10386ec21d52e1fcb16c96.zip qemu-390becbf7faa8e7ecb10386ec21d52e1fcb16c96.tar.gz qemu-390becbf7faa8e7ecb10386ec21d52e1fcb16c96.tar.bz2 |
hw/arm/virt: Remove deprecated virt-2.7 machine
This machine has been supported for a period of more than 6 years.
According to our versioned machine support policy (see commit
ce80c4fa6ff "docs: document special exception for machine type
deprecation & removal") it can now be removed.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | hw/arm/virt.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/hw/arm/virt.c b/hw/arm/virt.c index 9d82cf7..a2a2137 100644 --- a/hw/arm/virt.c +++ b/hw/arm/virt.c @@ -3649,16 +3649,3 @@ static void virt_machine_2_8_options(MachineClass *mc) vmc->claim_edge_triggered_timers = true; } DEFINE_VIRT_MACHINE(2, 8) - -static void virt_machine_2_7_options(MachineClass *mc) -{ - VirtMachineClass *vmc = VIRT_MACHINE_CLASS(OBJECT_CLASS(mc)); - - virt_machine_2_8_options(mc); - compat_props_add(mc->compat_props, hw_compat_2_7, hw_compat_2_7_len); - /* ITS was introduced with 2.8 */ - vmc->no_its = true; - /* Stick with 1K pages for migration compatibility */ - mc->minimum_page_bits = 0; -} -DEFINE_VIRT_MACHINE(2, 7) |