Commit 71133027 authored by Nick Piggin's avatar Nick Piggin Committed by Linus Torvalds

x86_64: wbinvd macro fix

Too many semicolons in this macro.
Signed-off-by: default avatarNick Piggin <npiggin@suse.de>
Cc: Andi Kleen <ak@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c4d198d5
......@@ -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__ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment