[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240730062348.46205-2-spwhitton@spwhitton.name>
Date: Tue, 30 Jul 2024 15:23:45 +0900
From: Sean Whitton <spwhitton@...hitton.name>
To:
Cc: ~lkcamp/patches@...ts.sr.ht,
helen.koike@...labora.com,
Hans de Goede <hdegoede@...hat.com>,
Mauro Carvalho Chehab <mchehab@...nel.org>,
Sakari Ailus <sakari.ailus@...ux.intel.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
linux-media@...r.kernel.org,
linux-staging@...ts.linux.dev,
linux-kernel@...r.kernel.org
Subject: [PATCH] staging: media: atomisp: Add parentheses around macro definitions
Fix checkpatch error
"ERROR: Macros with complex values should be enclosed in parentheses"
at hive_isp_css_include/sp.h:41, hive_isp_css_include/sp.h:42.
Signed-off-by: Sean Whitton <spwhitton@...hitton.name>
---
drivers/staging/media/atomisp/pci/hive_isp_css_include/sp.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
This is my first Linux kernel patch, from Helen Koike's DebConf24 workshop.
Thanks!
diff --git a/drivers/staging/media/atomisp/pci/hive_isp_css_include/sp.h b/drivers/staging/media/atomisp/pci/hive_isp_css_include/sp.h
index a7d00c7bb8bc..128109afe842 100644
--- a/drivers/staging/media/atomisp/pci/hive_isp_css_include/sp.h
+++ b/drivers/staging/media/atomisp/pci/hive_isp_css_include/sp.h
@@ -38,8 +38,8 @@
#define STORAGE_CLASS_SP_C
#include "sp_public.h"
#else /* __INLINE_SP__ */
-#define STORAGE_CLASS_SP_H static inline
-#define STORAGE_CLASS_SP_C static inline
+#define STORAGE_CLASS_SP_H (static inline)
+#define STORAGE_CLASS_SP_C (static inline)
#include "sp_private.h"
#endif /* __INLINE_SP__ */
--
2.45.2
Powered by blists - more mailing lists