[PATCH] staging: gpib: Wrapped macro in parentheses to ensure the correct evaluation order
From: eisantosh95
Date: Wed Dec 11 2024 - 14:22:26 EST
From: Santosh Mahto <eisantosh95@xxxxxxxxx>
ERROR found by checkpatch.pl script
Signed-off-by: Santosh Mahto <eisantosh95@xxxxxxxxx>
---
drivers/staging/gpib/gpio/gpib_bitbang.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/gpib/gpio/gpib_bitbang.c b/drivers/staging/gpib/gpio/gpib_bitbang.c
index a2d562cbd65b..3aec39a6d6b5 100644
--- a/drivers/staging/gpib/gpio/gpib_bitbang.c
+++ b/drivers/staging/gpib/gpio/gpib_bitbang.c
@@ -44,10 +44,10 @@
pr_info("%s:%s - " frm, NAME, __func__, ## __VA_ARGS__); } \
while (0)
-#define LINVAL gpiod_get_value(DAV), \
- gpiod_get_value(NRFD), \
- gpiod_get_value(NDAC), \
- gpiod_get_value(SRQ)
+#define LINVAL (gpiod_get_value(DAV), \
+ gpiod_get_value(NRFD), \
+ gpiod_get_value(NDAC), \
+ gpiod_get_value(SRQ))
#define LINFMT "DAV: %d NRFD:%d NDAC: %d SRQ: %d"
#include "gpibP.h"
--
2.25.1