aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
diff options
context:
space:
mode:
authorGleb Natapov <gleb@redhat.com>2010-04-28 12:15:36 -0400
committerAvi Kivity <avi@redhat.com>2010-08-01 03:35:34 -0400
commitf181b96d4c769b8915849eb9070c18116fd8d44e (patch)
treebf6ec49e557f420bc96122ab6c1ee4cc3e226973 /arch/x86/kvm
parentc3cd7ffaf57ae6ead5b394cebaeb76164059a57f (diff)
KVM: remove export of emulator_write_emulated()
It is not called directly outside of the file it's defined in anymore. Signed-off-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r--arch/x86/kvm/x86.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 4cb65d82abca..15a4b754a451 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -3465,7 +3465,6 @@ int emulator_write_emulated(unsigned long addr,
3465 } 3465 }
3466 return emulator_write_emulated_onepage(addr, val, bytes, vcpu); 3466 return emulator_write_emulated_onepage(addr, val, bytes, vcpu);
3467} 3467}
3468EXPORT_SYMBOL_GPL(emulator_write_emulated);
3469 3468
3470#define CMPXCHG_TYPE(t, ptr, old, new) \ 3469#define CMPXCHG_TYPE(t, ptr, old, new) \
3471 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old)) 3470 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))