xref: /qemu/target/arm/hvf-stub.c (revision 96778e69a2e391e5dc99d2318e7830695c607795)
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 
12 uint32_t hvf_arm_get_default_ipa_bit_size(void)
13 {
14     g_assert_not_reached();
15 }
16 
17 uint32_t hvf_arm_get_max_ipa_bit_size(void)
18 {
19     g_assert_not_reached();
20 }
21