diff options
| author | Claudio Fontana <cfontana@suse.de> | 2020-08-11 15:58:14 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-10-05 16:41:22 +0200 |
| commit | b46bc3c23ffb83b6f51748957acc3ea339341c1e (patch) | |
| tree | 2d41a41d8100873ec6a19b1acc512c4531e08e70 /accel/stubs/hvf-stub.c | |
| parent | bb4776be7733659bdbce4548e2c042107bad76f4 (diff) | |
| download | focaccia-qemu-b46bc3c23ffb83b6f51748957acc3ea339341c1e.tar.gz focaccia-qemu-b46bc3c23ffb83b6f51748957acc3ea339341c1e.zip | |
hvf: remove hvf specific functions from global includes
Signed-off-by: Claudio Fontana <cfontana@suse.de> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Roman Bolshakov <r.bolshakov@yadro.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'accel/stubs/hvf-stub.c')
| -rw-r--r-- | accel/stubs/hvf-stub.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/accel/stubs/hvf-stub.c b/accel/stubs/hvf-stub.c deleted file mode 100644 index e81dfe888c..0000000000 --- a/accel/stubs/hvf-stub.c +++ /dev/null @@ -1,30 +0,0 @@ -/* - * QEMU HVF support - * - * Copyright 2017 Red Hat, Inc. - * - * This software is licensed under the terms of the GNU General Public - * License version 2 or later, as published by the Free Software Foundation, - * and may be copied, distributed, and modified under those terms. - * - * See the COPYING file in the top-level directory. - * - */ - -#include "qemu/osdep.h" -#include "cpu.h" -#include "sysemu/hvf.h" - -int hvf_init_vcpu(CPUState *cpu) -{ - return -ENOSYS; -} - -int hvf_vcpu_exec(CPUState *cpu) -{ - return -ENOSYS; -} - -void hvf_vcpu_destroy(CPUState *cpu) -{ -} |