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

hanyu001@208suo.com posted 1 patch 2 years, 6 months ago
arch/csky/abiv2/inc/abi/ckmmu.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH] abiv2: inc: abi: add require space around ':'
Posted by hanyu001@208suo.com 2 years, 6 months ago
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@208suo.com>
---
  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)