summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Burton <paul.burton@mips.com>2019-10-01 21:53:14 +0000
committerPaul Burton <paul.burton@mips.com>2019-10-07 09:42:24 -0700
commit185d7d7a58194e3784e8dc2898756065f974090a (patch)
treebaf9d1cbdd3d2b4137cbd201d6b15f048f412ffc
parentfe0065e56227a2f6a6ad717c6d8d871263e482a8 (diff)
MIPS: barrier: Clean up sync_ginv()
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
-rw-r--r--arch/mips/include/asm/barrier.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/barrier.h b/arch/mips/include/asm/barrier.h
index a117c6d95038..c7e05e832da9 100644
--- a/arch/mips/include/asm/barrier.h
+++ b/arch/mips/include/asm/barrier.h
@@ -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>