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

From: hanyu001
Date: Wed Jul 19 2023 - 05:36:37 EST


Fix below checkpatch errors:

/csky/abiv2/inc/abi/ckmmu.h:131: ERROR: spaces required around that ':' (ctx:ExV)
/csky/abiv2/inc/abi/ckmmu.h:132: ERROR: spaces required around that ':' (ctx:ExV)

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

diff --git a/arch/csky/abiv2/inc/abi/ckmmu.h b/arch/csky/abiv2/inc/abi/ckmmu.h
index 64215f2380f1..b5cac07c4411 100644
--- a/arch/csky/abiv2/inc/abi/ckmmu.h
+++ b/arch/csky/abiv2/inc/abi/ckmmu.h
@@ -128,8 +128,8 @@ static inline void setup_pgd(pgd_t *pgd, int asid)
NOP32
".endr \n"
:
- :"r"(asid), "r"(__pa(pgd) | BIT(0))
- :"memory");
+ : "r"(asid), "r"(__pa(pgd) | BIT(0))
+ : "memory");
}

static inline pgd_t *get_pgd(void)