mirror of https://gitee.com/openkylin/linux.git
KVM: VMX: fix sparse warning
Impact: make global function static arch/x86/kvm/vmx.c:134:3: warning: symbol 'vmx_capability' was not declared. Should it be static? Signed-off-by: Hannes Eder <hannes@hanneseder.net> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
e8ba5d311d
commit
efff9e538f
|
@ -128,7 +128,7 @@ static struct vmcs_config {
|
||||||
u32 vmentry_ctrl;
|
u32 vmentry_ctrl;
|
||||||
} vmcs_config;
|
} vmcs_config;
|
||||||
|
|
||||||
struct vmx_capability {
|
static struct vmx_capability {
|
||||||
u32 ept;
|
u32 ept;
|
||||||
u32 vpid;
|
u32 vpid;
|
||||||
} vmx_capability;
|
} vmx_capability;
|
||||||
|
|
Loading…
Reference in New Issue