diff options
author | Dave Martin <[email protected]> | 2018-09-28 14:39:06 +0100 |
---|---|---|
committer | Marc Zyngier <[email protected]> | 2019-03-29 14:41:52 +0000 |
commit | 38abf22e122e00d20e99408fce4471b5cb65133b (patch) | |
tree | a0d86a71db46910de02799abc42d284f41588461 | |
parent | efbc20249fee68c5740ac49704f437ecee7eda6f (diff) |
KVM: arm64: Delete orphaned declaration for __fpsimd_enabled()
__fpsimd_enabled() no longer exists, but a dangling declaration has
survived in kvm_hyp.h.
This patch gets rid of it.
Signed-off-by: Dave Martin <[email protected]>
Reviewed-by: Alex Bennée <[email protected]>
Tested-by: zhang.lei <[email protected]>
Signed-off-by: Marc Zyngier <[email protected]>
-rw-r--r-- | arch/arm64/include/asm/kvm_hyp.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm64/include/asm/kvm_hyp.h b/arch/arm64/include/asm/kvm_hyp.h index 4da765f2cca5..ef8b8394d3d1 100644 --- a/arch/arm64/include/asm/kvm_hyp.h +++ b/arch/arm64/include/asm/kvm_hyp.h @@ -149,7 +149,6 @@ void __debug_switch_to_host(struct kvm_vcpu *vcpu); void __fpsimd_save_state(struct user_fpsimd_state *fp_regs); void __fpsimd_restore_state(struct user_fpsimd_state *fp_regs); -bool __fpsimd_enabled(void); void activate_traps_vhe_load(struct kvm_vcpu *vcpu); void deactivate_traps_vhe_put(void); |