diff options
author | Marc Zyngier <maz@kernel.org> | 2020-04-22 09:58:22 +0200 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2020-07-07 10:28:38 +0200 |
commit | 3c5ff0c60f2febb170bc4096d4b8a8390ebb0bad (patch) | |
tree | 5b3b2bcd3960b98e8aad0dab5f035e68a6f98901 /arch/arm64/kvm/arch_timer.c | |
parent | KVM: arm64: Move SPSR_EL1 to the system register array (diff) | |
download | linux-3c5ff0c60f2febb170bc4096d4b8a8390ebb0bad.tar.xz linux-3c5ff0c60f2febb170bc4096d4b8a8390ebb0bad.zip |
KVM: arm64: timers: Rename kvm_timer_sync_hwstate to kvm_timer_sync_user
kvm_timer_sync_hwstate() has nothing to do with the timer HW state,
but more to do with the state of a userspace interrupt controller.
Change the suffix from _hwstate to_user, in keeping with the rest
of the code.
Signed-off-by: Marc Zyngier <maz@kernel.org>
Diffstat (limited to 'arch/arm64/kvm/arch_timer.c')
-rw-r--r-- | arch/arm64/kvm/arch_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kvm/arch_timer.c b/arch/arm64/kvm/arch_timer.c index a1fe0ea3254e..33d85a504720 100644 --- a/arch/arm64/kvm/arch_timer.c +++ b/arch/arm64/kvm/arch_timer.c @@ -615,7 +615,7 @@ static void unmask_vtimer_irq_user(struct kvm_vcpu *vcpu) } } -void kvm_timer_sync_hwstate(struct kvm_vcpu *vcpu) +void kvm_timer_sync_user(struct kvm_vcpu *vcpu) { struct arch_timer_cpu *timer = vcpu_timer(vcpu); |