* [PATCH] style: fix missing whitespace after commas in if-statements
@ 2026-05-04 16:14 Lucas Poupeau
0 siblings, 0 replies; only message in thread
From: Lucas Poupeau @ 2026-05-04 16:14 UTC (permalink / raw)
To: linux
Cc: ulfh, johan, claudiu.beznea.uj, joerg.roedel, kees, lucasp.linux,
linux-kernel
Add missing spaces after commas in several if-condition arguments to
satisfy coding style requirements and fix compilation errors.
In some configurations, missing whitespace after commas triggers
build failures. This patch ensures compliance with the Linux kernel
coding style.
Signed-off-by: Lucas Poupeau <lucasp.linux@gmail.com>
---
drivers/amba/bus.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/amba/bus.c b/drivers/amba/bus.c
index 6d479caf89cb..893f07166f29 100644
--- a/drivers/amba/bus.c
+++ b/drivers/amba/bus.c
@@ -109,7 +109,7 @@ static ssize_t driver_override_store(struct device *_dev,
}
static DEVICE_ATTR_RW(driver_override);
-#define amba_attr_func(name,fmt,arg...) \
+#define amba_attr_func(name, fmt, arg...) \
static ssize_t name##_show(struct device *_dev, \
struct device_attribute *attr, char *buf) \
{ \
--
2.54.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-05-04 16:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-04 16:14 [PATCH] style: fix missing whitespace after commas in if-statements Lucas Poupeau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox