diff options
| author | Jan Kiszka | 2011-02-07 12:19:20 +0100 |
|---|---|---|
| committer | Marcelo Tosatti | 2011-02-14 15:39:46 +0100 |
| commit | 7a39fe588251ba042c91bf23d53b0ba820bf964c (patch) | |
| tree | 3d487736c5de2aa4905f46b5bf913f44e336aed8 /target-ppc | |
| parent | kvm: x86: Prepare VCPU loop for in-kernel irqchip (diff) | |
| download | qemu-7a39fe588251ba042c91bf23d53b0ba820bf964c.tar.gz qemu-7a39fe588251ba042c91bf23d53b0ba820bf964c.tar.xz qemu-7a39fe588251ba042c91bf23d53b0ba820bf964c.zip | |
kvm: Drop return values from kvm_arch_pre/post_run
We do not check them, and the only arch with non-empty implementations
always returns 0 (this is also true for qemu-kvm).
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
CC: Alexander Graf <agraf@suse.de>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'target-ppc')
| -rw-r--r-- | target-ppc/kvm.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/target-ppc/kvm.c b/target-ppc/kvm.c index 93ecc57470..bd4012a4ec 100644 --- a/target-ppc/kvm.c +++ b/target-ppc/kvm.c @@ -256,14 +256,12 @@ int kvm_arch_pre_run(CPUState *env, struct kvm_run *run) return 0; } -int kvm_arch_post_run(CPUState *env, struct kvm_run *run) +void kvm_arch_post_run(CPUState *env, struct kvm_run *run) { - return 0; } -int kvm_arch_process_irqchip_events(CPUState *env) +void kvm_arch_process_irqchip_events(CPUState *env) { - return 0; } static int kvmppc_handle_halt(CPUState *env) |
