mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 23:03:54 -06:00
hw/xen/hvm: Fix Aarch64 typo
There is no TARGET_ARM_64 definition. Luckily enough,
when TARGET_AARCH64 is defined, TARGET_ARM also is.
Fixes: 733766cd37
("hw/arm: introduce xenpvh machine")
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20250305153929.43687-2-philmd@linaro.org>
This commit is contained in:
parent
700d3d6dd4
commit
3a11b653a6
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
#if defined(TARGET_I386) || defined(TARGET_X86_64)
|
||||
#include "hw/i386/xen_arch_hvm.h"
|
||||
#elif defined(TARGET_ARM) || defined(TARGET_ARM_64)
|
||||
#elif defined(TARGET_ARM) || defined(TARGET_AARCH64)
|
||||
#include "hw/arm/xen_arch_hvm.h"
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue