From: Takuya Yoshikawa Date: Wed, 6 Jan 2010 08:55:23 +0000 (+0900) Subject: KVM: Fix the explanation of write_emulated X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=21a034d4f0b60c1f27a04ecb7b8a16478292d950;p=users%2Fdwmw2%2Flinux.git KVM: Fix the explanation of write_emulated The explanation of write_emulated is confused with that of read_emulated. This patch fix it. Signed-off-by: Takuya Yoshikawa Signed-off-by: Marcelo Tosatti --- diff --git a/arch/x86/include/asm/kvm_emulate.h b/arch/x86/include/asm/kvm_emulate.h index 7c18e1230f549..9b697c2735d9f 100644 --- a/arch/x86/include/asm/kvm_emulate.h +++ b/arch/x86/include/asm/kvm_emulate.h @@ -74,7 +74,7 @@ struct x86_emulate_ops { struct kvm_vcpu *vcpu); /* - * write_emulated: Read bytes from emulated/special memory area. + * write_emulated: Write bytes to emulated/special memory area. * @addr: [IN ] Linear address to which to write. * @val: [IN ] Value to write to memory (low-order bytes used as * required).