KVM: x86 emulator: fix the comment of out instruction
[deliverable/linux.git] / arch / x86 / kvm / emulate.c
index d842a7d2bc64b22c0ed1e36d3076adf71421e13a..ad8d7cdd1eb95d83ec4b630c0ce781f9f3d9115c 100644 (file)
@@ -2949,8 +2949,8 @@ special_insn:
                                     &c->dst.val))
                        goto done; /* IO is needed */
                break;
-       case 0xee: /* out al,dx */
-       case 0xef: /* out (e/r)ax,dx */
+       case 0xee: /* out dx,al */
+       case 0xef: /* out dx,(e/r)ax */
                c->src.val = c->regs[VCPU_REGS_RDX];
        do_io_out:
                c->dst.bytes = min(c->dst.bytes, 4u);
This page took 0.035784 seconds and 5 git commands to generate.