* [PATCH] kallsyms: Clean up errors in module.h
@ 2023-10-13 3:36 chenguohua
0 siblings, 0 replies; only message in thread
From: chenguohua @ 2023-10-13 3:36 UTC (permalink / raw)
To: mcgrof, keescook, yzaikin; +Cc: linux-kernel, linux-fsdevel
Fix the following errors reported by checkpatch:
ERROR: space required after that ',' (ctx:VxV)
Signed-off-by: GuoHua Cheng <chenguohua@jari.cn>
---
include/linux/module.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/module.h b/include/linux/module.h
index a98e188cf37b..48aebea72d3a 100644
--- a/include/linux/module.h
+++ b/include/linux/module.h
@@ -152,7 +152,7 @@ extern void cleanup_module(void);
#define __initconst_or_module
#define __INIT_OR_MODULE .text
#define __INITDATA_OR_MODULE .data
-#define __INITRODATA_OR_MODULE .section ".rodata","a",%progbits
+#define __INITRODATA_OR_MODULE .section ".rodata", "a", %progbits
#else
#define __init_or_module __init
#define __initdata_or_module __initdata
@@ -802,7 +802,7 @@ static inline bool within_module(unsigned long addr, const struct module *mod)
}
/* Get/put a kernel symbol (calls should be symmetric) */
-#define symbol_get(x) ({ extern typeof(x) x __attribute__((weak,visibility("hidden"))); &(x); })
+#define symbol_get(x) ({ extern typeof(x) x __attribute__((weak, visibility("hidden"))); &(x); })
#define symbol_put(x) do { } while (0)
#define symbol_put_addr(x) do { } while (0)
--
2.17.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2023-10-13 3:38 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-13 3:36 [PATCH] kallsyms: Clean up errors in module.h chenguohua
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).