From: Thomas Huth Date: Tue, 5 Jul 2022 15:10:30 +0000 (+0200) Subject: target/ppc/cpu-models: Remove the "default" CPU alias X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7886605961d0a9c40ada0c28dee5fa0b42a30836;p=qemu.git target/ppc/cpu-models: Remove the "default" CPU alias QEMU emulates a *lot* of PowerPC-based machines - having a CPU that is named "default" and cannot be used with most of those machines sounds just wrong. Thus let's remove this old and confusing alias now. Signed-off-by: Thomas Huth Reviewed-by: Greg Kurz Reviewed-by: Cédric Le Goater Message-Id: <20220705151030.662140-1-thuth@redhat.com> Signed-off-by: Daniel Henrique Barboza --- diff --git a/target/ppc/cpu-models.c b/target/ppc/cpu-models.c index 05589eb21d..8538493061 100644 --- a/target/ppc/cpu-models.c +++ b/target/ppc/cpu-models.c @@ -917,6 +917,6 @@ PowerPCCPUAlias ppc_cpu_aliases[] = { #endif { "ppc32", "604" }, { "ppc", "604" }, - { "default", "604" }, + { NULL, NULL } };