From: Nick Piggin Date: Sat, 21 Jul 2007 11:37:17 +0000 (-0700) Subject: x86_64: wbinvd macro fix X-Git-Tag: v2.6.23-rc1~189 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=71133027febfabd501fde7583b30008224f4d799;p=linux-2.6-omap-h63xx.git x86_64: wbinvd macro fix Too many semicolons in this macro. Signed-off-by: Nick Piggin Cc: Andi Kleen Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/asm-x86_64/system.h b/include/asm-x86_64/system.h index e4f246d62c4..6313d33a068 100644 --- a/include/asm-x86_64/system.h +++ b/include/asm-x86_64/system.h @@ -109,7 +109,7 @@ static inline void write_cr4(unsigned long val) #define stts() write_cr0(8 | read_cr0()) #define wbinvd() \ - __asm__ __volatile__ ("wbinvd": : :"memory"); + __asm__ __volatile__ ("wbinvd": : :"memory") #endif /* __KERNEL__ */