diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-03-05 12:36:32 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-03-11 20:03:26 +0100 |
commit | 3a11b653a63fee0e43f4ab84b93f068b961d8fe7 (patch) | |
tree | 6439828d82653aed329242487d5d262d3dce847d /include/hw | |
parent | 700d3d6dd41de3bd3f1153e3cfe00b93f99b1441 (diff) | |
download | qemu-3a11b653a63fee0e43f4ab84b93f068b961d8fe7.zip qemu-3a11b653a63fee0e43f4ab84b93f068b961d8fe7.tar.gz qemu-3a11b653a63fee0e43f4ab84b93f068b961d8fe7.tar.bz2 |
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: 733766cd373 ("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>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/xen/arch_hvm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/xen/arch_hvm.h b/include/hw/xen/arch_hvm.h index c7c5152..df39c81 100644 --- a/include/hw/xen/arch_hvm.h +++ b/include/hw/xen/arch_hvm.h @@ -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 |