From: Sean Christopherson Date: Thu, 22 Apr 2021 02:11:24 +0000 (-0700) Subject: KVM: SVM: Remove an unnecessary prototype declaration of sev_flush_asids() X-Git-Tag: accepted/tizen/unified/20230118.172025~7317^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=82b7ae0481aeed393094e4f73bf4566a504b86bc;p=platform%2Fkernel%2Flinux-rpi.git KVM: SVM: Remove an unnecessary prototype declaration of sev_flush_asids() Remove the forward declaration of sev_flush_asids(), which is only a few lines above the function itself. No functional change intended. Reviewed by: Tom Lendacky Reviewed-by: Brijesh Singh Signed-off-by: Sean Christopherson Message-Id: <20210422021125.3417167-15-seanjc@google.com> Signed-off-by: Paolo Bonzini --- diff --git a/arch/x86/kvm/svm/sev.c b/arch/x86/kvm/svm/sev.c index eedb5f6..fd3ffc1 100644 --- a/arch/x86/kvm/svm/sev.c +++ b/arch/x86/kvm/svm/sev.c @@ -58,7 +58,6 @@ module_param_named(sev_es, sev_es_enabled, bool, 0444); #endif /* CONFIG_KVM_AMD_SEV */ static u8 sev_enc_bit; -static int sev_flush_asids(void); static DECLARE_RWSEM(sev_deactivate_lock); static DEFINE_MUTEX(sev_bitmap_lock); unsigned int max_sev_asid;