MIPS: barrier: Clean up sync_ginv()
authorPaul Burton <paul.burton@mips.com>
Tue, 1 Oct 2019 21:53:14 +0000 (21:53 +0000)
committerPaul Burton <paul.burton@mips.com>
Mon, 7 Oct 2019 16:42:24 +0000 (09:42 -0700)
Use the new __SYNC() infrastructure to implement sync_ginv(), for
consistency with much of the rest of the asm/barrier.h.

Signed-off-by: Paul Burton <paul.burton@mips.com>
Cc: linux-mips@vger.kernel.org
Cc: Huacai Chen <chenhc@lemote.com>
Cc: Jiaxun Yang <jiaxun.yang@flygoat.com>
Cc: linux-kernel@vger.kernel.org
arch/mips/include/asm/barrier.h

index a117c6d..c7e05e8 100644 (file)
@@ -163,7 +163,7 @@ static inline void wmb(void)
 
 static inline void sync_ginv(void)
 {
-       asm volatile("sync\t%0" :: "i"(__SYNC_ginv));
+       asm volatile(__SYNC(ginv, always));
 }
 
 #include <asm-generic/barrier.h>