diff options
author | Takuya Yoshikawa <yoshikawa.takuya@oss.ntt.co.jp> | 2010-02-12 08:02:54 +0100 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-04-25 11:27:53 +0200 |
commit | ad91f8ffbb18413e79f9f976a55b4e11d02e6a6d (patch) | |
tree | 46041b6c023ccb66995082734658a58f6d74bb10 | |
parent | KVM: x86 emulator: Fix x86_emulate_insn() not to use the variable rc for non-... (diff) | |
download | linux-ad91f8ffbb18413e79f9f976a55b4e11d02e6a6d.tar.xz linux-ad91f8ffbb18413e79f9f976a55b4e11d02e6a6d.zip |
KVM: remove redundant prototype of load_pdptrs()
This patch removes redundant prototype of load_pdptrs().
I found load_pdptrs() twice in kvm_host.h. Let's remove one.
Signed-off-by: Takuya Yoshikawa <yoshikawa.takuya@oss.ntt.co.jp>
Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r-- | arch/x86/include/asm/kvm_host.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index cf392dfb8000..d46e791de129 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h @@ -670,7 +670,6 @@ void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva); void kvm_enable_tdp(void); void kvm_disable_tdp(void); -int load_pdptrs(struct kvm_vcpu *vcpu, unsigned long cr3); int complete_pio(struct kvm_vcpu *vcpu); bool kvm_check_iopl(struct kvm_vcpu *vcpu); |