]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
KVM: fix build error: add missing semi-colon in longmode cpuid
authorRandy Dunlap <randy.dunlap@oracle.com>
Mon, 11 May 2009 16:32:38 +0000 (09:32 -0700)
committerAvi Kivity <avi@redhat.com>
Tue, 12 May 2009 08:30:51 +0000 (11:30 +0300)
Add missing ; to fix build error:

arch/x86/kvm/x86.c:1259: error: expected',' or ';' before 'const'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
arch/x86/kvm/x86.c

index c6d3ff3f7f97570a08129368838b47507f9f787a..fd0a5719f117f29b2b0c9cf9552b71ab15f05aea 100644 (file)
@@ -1252,7 +1252,7 @@ static void do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 function,
 #ifdef CONFIG_X86_64
        unsigned f_lm = F(LM);
 #else
-       unsigned f_lm = 0
+       unsigned f_lm = 0;
 #endif
 
        /* cpuid 1.edx */