qemu/target/arm/hvf-stub.c
Philippe Mathieu-Daudé f1bcfa81d8 target/arm/hvf_arm: Avoid using poisoned CONFIG_HVF definition
In order to allow non-target specific code to include
"hvf_arm.h", define the stubs in hvf-stub.c.

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: 20250513173928.77376-3-philmd@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2025-05-29 17:45:10 +01:00

20 lines
336 B
C

/*
* QEMU Hypervisor.framework (HVF) stubs for ARM
*
* Copyright (c) Linaro
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "qemu/osdep.h"
#include "hvf_arm.h"
uint32_t hvf_arm_get_default_ipa_bit_size(void)
{
g_assert_not_reached();
}
uint32_t hvf_arm_get_max_ipa_bit_size(void)
{
g_assert_not_reached();
}