xref: /qemu/target/arm/hvf-stub.c (revision 3e82ddaa8db260a232dbbbf488d8ac7851d124c5)
1 /*
2  * QEMU Hypervisor.framework (HVF) stubs for ARM
3  *
4  *  Copyright (c) Linaro
5  *
6  * SPDX-License-Identifier: GPL-2.0-or-later
7  */
8 
9 #include "qemu/osdep.h"
10 #include "hvf_arm.h"
11 
hvf_arm_get_default_ipa_bit_size(void)12 uint32_t hvf_arm_get_default_ipa_bit_size(void)
13 {
14     g_assert_not_reached();
15 }
16 
hvf_arm_get_max_ipa_bit_size(void)17 uint32_t hvf_arm_get_max_ipa_bit_size(void)
18 {
19     g_assert_not_reached();
20 }
21