Function "write_fcsr" uses wrong asm dest. Fix it!
Reported-by: Miao HAO <[email protected]>
Signed-off-by: Qi Hu <[email protected]>
---
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