diff options
author | Hannes Eder <hannes@hanneseder.net> | 2008-11-28 17:02:06 +0100 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2008-12-31 16:55:06 +0200 |
commit | efff9e538f6bfa8ee2ca03f7e9a55d98df115186 (patch) | |
tree | cd6e4f7965828c67e7109a156f39e32e35fe0e94 /arch | |
parent | e8ba5d311d0c4420e84f40ff50f83981f5864a9a (diff) | |
download | op-kernel-dev-efff9e538f6bfa8ee2ca03f7e9a55d98df115186.zip op-kernel-dev-efff9e538f6bfa8ee2ca03f7e9a55d98df115186.tar.gz |
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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kvm/vmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 7ea4855..e446f23 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -128,7 +128,7 @@ static struct vmcs_config { u32 vmentry_ctrl; } vmcs_config; -struct vmx_capability { +static struct vmx_capability { u32 ept; u32 vpid; } vmx_capability; |