From 71133027febfabd501fde7583b30008224f4d799 Mon Sep 17 00:00:00 2001 From: Nick Piggin Date: Sat, 21 Jul 2007 04:37:17 -0700 Subject: [PATCH] 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 --- include/asm-x86_64/system.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/asm-x86_64/system.h b/include/asm-x86_64/system.h index e4f246d62c46..6313d33a0686 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__ */ -- 2.11.0