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>
This commit is contained in:
Wei Yongjun 2010-07-06 16:50:21 +08:00 committed by Avi Kivity
parent a5046e6c7d
commit ce7a0ad3bd
1 changed files with 2 additions and 2 deletions

View File

@ -2949,8 +2949,8 @@ special_insn:
&c->dst.val)) &c->dst.val))
goto done; /* IO is needed */ goto done; /* IO is needed */
break; break;
case 0xee: /* out al,dx */ case 0xee: /* out dx,al */
case 0xef: /* out (e/r)ax,dx */ case 0xef: /* out dx,(e/r)ax */
c->src.val = c->regs[VCPU_REGS_RDX]; c->src.val = c->regs[VCPU_REGS_RDX];
do_io_out: do_io_out:
c->dst.bytes = min(c->dst.bytes, 4u); c->dst.bytes = min(c->dst.bytes, 4u);