2023-07-19 09:47:17

by hanyu001

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

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 <[email protected]>
---
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)