From: Glauber de Oliveira Costa Date: Wed, 30 Jan 2008 12:31:08 +0000 (+0100) Subject: x86: remove volatile keyword from clflush. X-Git-Tag: v3.12-rc1~24034^2~636 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e34907ae180f4fe6c28bb4516c679c2f81b0c9ed;p=kernel%2Fkernel-generic.git x86: remove volatile keyword from clflush. the p parameter is an explicit memory reference, and is enough to prevent gcc to being nasty here. The volatile seems completely not needed. Signed-off-by: Glauber de Oliveira Costa Signed-off-by: Ingo Molnar Signed-off-by: Thomas Gleixner --- diff --git a/include/asm-x86/system_32.h b/include/asm-x86/system_32.h index f5b3f77..28978b1 100644 --- a/include/asm-x86/system_32.h +++ b/include/asm-x86/system_32.h @@ -161,7 +161,7 @@ static inline void native_wbinvd(void) asm volatile("wbinvd": : :"memory"); } -static inline void clflush(volatile void *__p) +static inline void clflush(void *__p) { asm volatile("clflush %0" : "+m" (*(char __force *)__p)); }