From: Philippe Mathieu-Daudé Date: Thu, 20 Apr 2023 09:21:15 +0000 (+0100) Subject: hw/arm/virt: Restrict Cortex-A7 check to TCG X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7a98c8377b7466fbcbc488425d6b6bff85437013;p=qmiga%2Fqemu.git hw/arm/virt: Restrict Cortex-A7 check to TCG The Cortex-A7 core is only available when TCG is enabled (see commit 80485d88f9 "target/arm: Restrict v7A TCG cpus to TCG accel"). Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-id: 20230405100848.76145-3-philmd@linaro.org Signed-off-by: Peter Maydell --- diff --git a/hw/arm/virt.c b/hw/arm/virt.c index 4983f5fc93..bdf3d76cc4 100644 --- a/hw/arm/virt.c +++ b/hw/arm/virt.c @@ -204,7 +204,9 @@ static const int a15irqmap[] = { }; static const char *valid_cpus[] = { +#ifdef CONFIG_TCG ARM_CPU_TYPE_NAME("cortex-a7"), +#endif ARM_CPU_TYPE_NAME("cortex-a15"), ARM_CPU_TYPE_NAME("cortex-a35"), ARM_CPU_TYPE_NAME("cortex-a53"),