hw/arm/virt: Fix non-secure flash mode
[qemu/ar7.git] / accel / stubs / hvf-stub.c
blobe81dfe888cd9262b2219a5e529e5e107048d6487
1 /*
2 * QEMU HVF support
4 * Copyright 2017 Red Hat, Inc.
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2 or later, as published by the Free Software Foundation,
8 * and may be copied, distributed, and modified under those terms.
10 * See the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "cpu.h"
16 #include "sysemu/hvf.h"
18 int hvf_init_vcpu(CPUState *cpu)
20 return -ENOSYS;
23 int hvf_vcpu_exec(CPUState *cpu)
25 return -ENOSYS;
28 void hvf_vcpu_destroy(CPUState *cpu)