diff options
author | Avi Kivity <avi@redhat.com> | 2008-11-29 18:38:12 (GMT) |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2008-12-31 14:55:05 (GMT) |
commit | f3fd92fbdb7663bd889c136842afc3851351ea8f (patch) | |
tree | 5b5714ef7967a516b02b620ead8445acffbe9815 | |
parent | 2b48cc75b21431037d6f902b9d583b1aff198490 (diff) | |
download | linux-fsl-qoriq-f3fd92fbdb7663bd889c136842afc3851351ea8f.tar.xz |
KVM: Remove extraneous semicolon after do/while
Notices by Guillaume Thouvenin.
Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r-- | arch/x86/kvm/x86_emulate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/x86_emulate.c b/arch/x86/kvm/x86_emulate.c index e8c87cc..69b330b 100644 --- a/arch/x86/kvm/x86_emulate.c +++ b/arch/x86/kvm/x86_emulate.c @@ -374,7 +374,7 @@ static u16 group2_table[] = { : "=m" (_eflags), "=m" ((_dst).val), \ "=&r" (_tmp) \ : _y ((_src).val), "i" (EFLAGS_MASK)); \ - } while (0); + } while (0) /* Raw emulation: instruction has two explicit operands. */ |