aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2024-01-18 11:37:56 +0100
committerThomas Huth <thuth@redhat.com>2024-01-19 11:38:32 +0100
commit48c1c25a55cdf02d21b1781531e21299736b193a (patch)
treeaee92261ad1720a1439a0b5fbc654961d73eb489 /system
parent68c691ca99a2538d6a53a70ce8a9ce06ee307ff1 (diff)
downloadqemu-48c1c25a55cdf02d21b1781531e21299736b193a.zip
qemu-48c1c25a55cdf02d21b1781531e21299736b193a.tar.gz
qemu-48c1c25a55cdf02d21b1781531e21299736b193a.tar.bz2
qemu-options: Remove the deprecated -no-hpet option
It's been marked as deprecated since QEMU 8.0, so it should be fine to remove this now. Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-ID: <20240118103759.130748-2-thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'system')
-rw-r--r--system/vl.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/system/vl.c b/system/vl.c
index 53850a1..f08c4c8 100644
--- a/system/vl.c
+++ b/system/vl.c
@@ -3373,10 +3373,6 @@ void qemu_init(int argc, char **argv)
warn_report("-no-acpi is deprecated, use '-machine acpi=off' instead");
qdict_put_str(machine_opts_dict, "acpi", "off");
break;
- case QEMU_OPTION_no_hpet:
- warn_report("-no-hpet is deprecated, use '-machine hpet=off' instead");
- qdict_put_str(machine_opts_dict, "hpet", "off");
- break;
case QEMU_OPTION_no_reboot:
olist = qemu_find_opts("action");
qemu_opts_parse_noisily(olist, "reboot=shutdown", false);