[PATCH] abiv2: inc: abi: add require space around that ','

From: hanyu001
Date: Wed Jul 19 2023 - 12:36:04 EST


Fix below checkpatch errors:

./arch/csky/abiv2/inc/abi/entry.h:288: ERROR: spaces required around that ':' (ctx:VxE)
./arch/csky/abiv2/inc/abi/entry.h:297: ERROR: spaces required around that ':' (ctx:VxE)
./arch/csky/abiv2/inc/abi/entry.h:312: ERROR: spaces required around that ':' (ctx:VxE)

Signed-off-by: Yu Han <hanyu001@xxxxxxxxxx>
---
arch/csky/abiv2/inc/abi/entry.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/csky/abiv2/inc/abi/entry.h b/arch/csky/abiv2/inc/abi/entry.h
index cca63e699b58..704724154a87 100644
--- a/arch/csky/abiv2/inc/abi/entry.h
+++ b/arch/csky/abiv2/inc/abi/entry.h
@@ -285,7 +285,7 @@
mtcr r8, cr<8, 15> /* Set MCIR to write TLB */

br 2f
-1:
+1 :
/*
* MMU on: use origin MSA value from bootloader
*
@@ -294,7 +294,7 @@
* BA Reserved SH WA B SO SEC C D V
*/
mfcr r6, MSA_SET /* Get MSA */
-2:
+2 :
lsri r6, 29
lsli r6, 29
addi r6, 0x1ce
@@ -309,6 +309,6 @@
mtcr r6, cr18

jmpi 3f /* jump to va */
-3:
+3 :
.endm
#endif /* __ASM_CSKY_ENTRY_H */