diff options
author | Oliver Upton <oliver.upton@linux.dev> | 2023-09-20 21:50:35 +0200 |
---|---|---|
committer | Oliver Upton <oliver.upton@linux.dev> | 2023-09-21 20:13:29 +0200 |
commit | 3d4b2a4cddd783bc5a75585a7cb6189a8a551b22 (patch) | |
tree | 4ef9392fcba77c1cea468de947581662d8152f82 /include/kvm | |
parent | KVM: arm64: Hoist NV+SVE check into KVM_ARM_VCPU_INIT ioctl handler (diff) | |
download | linux-3d4b2a4cddd783bc5a75585a7cb6189a8a551b22.tar.xz linux-3d4b2a4cddd783bc5a75585a7cb6189a8a551b22.zip |
KVM: arm64: Remove unused return value from kvm_reset_vcpu()
Get rid of the return value for kvm_reset_vcpu() as there are no longer
any cases where it returns a nonzero value.
Link: https://lore.kernel.org/r/20230920195036.1169791-8-oliver.upton@linux.dev
Signed-off-by: Oliver Upton <oliver.upton@linux.dev>
Diffstat (limited to 'include/kvm')
-rw-r--r-- | include/kvm/arm_arch_timer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/kvm/arm_arch_timer.h b/include/kvm/arm_arch_timer.h index bb3cb005873e..8adf09dbc473 100644 --- a/include/kvm/arm_arch_timer.h +++ b/include/kvm/arm_arch_timer.h @@ -94,7 +94,7 @@ struct arch_timer_cpu { int __init kvm_timer_hyp_init(bool has_gic); int kvm_timer_enable(struct kvm_vcpu *vcpu); -int kvm_timer_vcpu_reset(struct kvm_vcpu *vcpu); +void kvm_timer_vcpu_reset(struct kvm_vcpu *vcpu); void kvm_timer_vcpu_init(struct kvm_vcpu *vcpu); void kvm_timer_sync_user(struct kvm_vcpu *vcpu); bool kvm_timer_should_notify_user(struct kvm_vcpu *vcpu); |