[<prev] [next>] [day] [month] [year] [list]
Message-ID: <a475a9b5702e1044296209daec102e69@208suo.com>
Date: Tue, 18 Jul 2023 17:48:59 +0800
From: hanyu001@...suo.com
To: benh@...nel.crashing.org, mpe@...erman.id.au, npiggin@...il.com,
christophe.leroy@...roup.eu, windhl@....com
Cc: linuxppc-dev@...ts.ozlabs.org, linux-kernel@...r.kernel.org
Subject: [PATCH] platforms: powermac: insert space before the open parenthesis
'('
Fixes checkpatch errors:
/platforms/powermac/low_i2c.c:55:ERROR: space required before the open
parenthesis '('
/platforms/powermac/low_i2c.c:63:ERROR: space required before the open
parenthesis '('
Signed-off-by: Yu Han <hanyu001@...suo.com>
---
arch/powerpc/platforms/powermac/low_i2c.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/powerpc/platforms/powermac/low_i2c.c
b/arch/powerpc/platforms/powermac/low_i2c.c
index 40f3aa432fba..25cc6eec962f 100644
--- a/arch/powerpc/platforms/powermac/low_i2c.c
+++ b/arch/powerpc/platforms/powermac/low_i2c.c
@@ -52,7 +52,7 @@
#ifdef DEBUG
#define DBG(x...) do {\
printk(KERN_DEBUG "low_i2c:" x); \
- } while(0)
+ } while (0)
#else
#define DBG(x...)
#endif
@@ -60,7 +60,7 @@
#ifdef DEBUG_LOW
#define DBG_LOW(x...) do {\
printk(KERN_DEBUG "low_i2c:" x); \
- } while(0)
+ } while (0)
#else
#define DBG_LOW(x...)
#endif
Powered by blists - more mailing lists