[PATCH] LoongArch: Fix function write_fcsr

Qi Hu posted 1 patch 2 years, 8 months ago
There is a newer version of this series
arch/loongarch/include/asm/loongarch.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] LoongArch: Fix function write_fcsr
Posted by Qi Hu 2 years, 8 months ago
Function "write_fcsr" uses wrong asm dest. Fix it!

Reported-by: Miao HAO <haomiao19@mails.ucas.ac.cn>
Signed-off-by: Qi Hu <huqi@loongson.cn>
---
 arch/loongarch/include/asm/loongarch.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/loongarch/include/asm/loongarch.h b/arch/loongarch/include/asm/loongarch.h
index b3323ab5b78d..60cadb95f611 100644
--- a/arch/loongarch/include/asm/loongarch.h
+++ b/arch/loongarch/include/asm/loongarch.h
@@ -1488,7 +1488,7 @@ __BUILD_CSR_OP(tlbidx)
 	unsigned int __res;	\
 \
 	__asm__ __volatile__(	\
-	"	movfcsr2gr	%0, "__stringify(source)" \n"	\
+	"	movfcsr2gr	"__stringify(source)", %0 \n"	\
 	: "=r" (__res));	\
 	__res;	\
 })
-- 
2.40.1