OSDN Git Service

cpuid: kvm_find_kvm_cpuid_features() should be declared 'static'
authorPaul Durrant <pdurrant@amazon.com>
Mon, 15 Nov 2021 14:41:31 +0000 (14:41 +0000)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 18 Nov 2021 07:03:14 +0000 (02:03 -0500)
commitdc23a5110b106da13502de5735399ad83ed1a682
tree6561e9e96aa8e4218dcf47a7de66ed01d019e1fc
parentc5adbb3af051079f35abfa26551107e2c653087f
cpuid: kvm_find_kvm_cpuid_features() should be declared 'static'

The lack a static declaration currently results in:

arch/x86/kvm/cpuid.c:128:26: warning: no previous prototype for function 'kvm_find_kvm_cpuid_features'

when compiling with "W=1".

Reported-by: kernel test robot <lkp@intel.com>
Fixes: 760849b1476c ("KVM: x86: Make sure KVM_CPUID_FEATURES really are KVM_CPUID_FEATURES")
Signed-off-by: Paul Durrant <pdurrant@amazon.com>
Message-Id: <20211115144131.5943-1-pdurrant@amazon.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/cpuid.c