aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-08-22 16:29:17 -0400
committerAvi Kivity <avi@redhat.com>2008-10-15 08:25:07 -0400
commit2259e3a7a6089007839cd4bbf7c9867190c67238 (patch)
treec609e167128766bf8d96a1f12680ee72038e22e5 /arch/x86/kvm
parent4c2155ce81c193788082d4b8cdbc26d79edebc58 (diff)
KVM: x86.c make kvm_load_realmode_segment static
Noticed by sparse: arch/x86/kvm/x86.c:3591:5: warning: symbol 'kvm_load_realmode_segment' was not declared. Should it be static? Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r--arch/x86/kvm/x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 108f07267e87..1b738cb02831 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -3611,7 +3611,7 @@ static int load_segment_descriptor_to_kvm_desct(struct kvm_vcpu *vcpu,
3611 return 0; 3611 return 0;
3612} 3612}
3613 3613
3614int kvm_load_realmode_segment(struct kvm_vcpu *vcpu, u16 selector, int seg) 3614static int kvm_load_realmode_segment(struct kvm_vcpu *vcpu, u16 selector, int seg)
3615{ 3615{
3616 struct kvm_segment segvar = { 3616 struct kvm_segment segvar = {
3617 .base = selector << 4, 3617 .base = selector << 4,