diff options
author | Wei Yongjun <yjwei@cn.fujitsu.com> | 2010-07-06 04:50:21 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-08-01 23:40:23 -0400 |
commit | ce7a0ad3bdcd86e6cf907eb5992fecb1503daa26 (patch) | |
tree | 7b5443b91534ec4e85c6315bb186a8f8e4c5dbd1 /arch/x86/kvm | |
parent | a5046e6c7d97d6574ffe6367311ea0b0de56aa58 (diff) |
KVM: x86 emulator: fix the comment of out instruction
Fix the comment of out instruction, using the same style as the
other instructions.
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r-- | arch/x86/kvm/emulate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c index d842a7d2bc64..ad8d7cdd1eb9 100644 --- a/arch/x86/kvm/emulate.c +++ b/arch/x86/kvm/emulate.c | |||
@@ -2949,8 +2949,8 @@ special_insn: | |||
2949 | &c->dst.val)) | 2949 | &c->dst.val)) |
2950 | goto done; /* IO is needed */ | 2950 | goto done; /* IO is needed */ |
2951 | break; | 2951 | break; |
2952 | case 0xee: /* out al,dx */ | 2952 | case 0xee: /* out dx,al */ |
2953 | case 0xef: /* out (e/r)ax,dx */ | 2953 | case 0xef: /* out dx,(e/r)ax */ |
2954 | c->src.val = c->regs[VCPU_REGS_RDX]; | 2954 | c->src.val = c->regs[VCPU_REGS_RDX]; |
2955 | do_io_out: | 2955 | do_io_out: |
2956 | c->dst.bytes = min(c->dst.bytes, 4u); | 2956 | c->dst.bytes = min(c->dst.bytes, 4u); |