[PATCH] LoongArch: Fix function write_fcsr

From: Qi Hu
Date: Wed Jun 07 2023 - 22:22:44 EST


Function "write_fcsr" uses wrong asm dest. Fix it!

Reported-by: Miao HAO <haomiao19@xxxxxxxxxxxxxxxx>
Signed-off-by: Qi Hu <huqi@xxxxxxxxxxx>
---
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