[PATCH] style: fix missing whitespace after commas in if-statements

From: Lucas Poupeau

Date: Mon May 04 2026 - 12:19:01 EST


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@xxxxxxxxx>
---
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