public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lib: test_objpool: add missing MODULE_DESCRIPTION() macro
@ 2024-06-01  0:31 Jeff Johnson
  2024-06-03  3:25 ` wuqiang.matt
  0 siblings, 1 reply; 8+ messages in thread
From: Jeff Johnson @ 2024-06-01  0:31 UTC (permalink / raw)
  To: Andrew Morton, Matt Wu; +Cc: linux-kernel, kernel-janitors, Jeff Johnson

make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_objpool.o

Add the missing invocation of the MODULE_DESCRIPTION() macro.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
---
 lib/test_objpool.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/test_objpool.c b/lib/test_objpool.c
index bfdb81599832..5a3f6961a70f 100644
--- a/lib/test_objpool.c
+++ b/lib/test_objpool.c
@@ -687,4 +687,5 @@ static void __exit ot_mod_exit(void)
 module_init(ot_mod_init);
 module_exit(ot_mod_exit);
 
-MODULE_LICENSE("GPL");
\ No newline at end of file
+MODULE_DESCRIPTION("Test module for lockless object pool");
+MODULE_LICENSE("GPL");

---
base-commit: b050496579632f86ee1ef7e7501906db579f3457
change-id: 20240531-md-lib-test_objpool-338d937f8666


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-07-15 16:11 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-01  0:31 [PATCH] lib: test_objpool: add missing MODULE_DESCRIPTION() macro Jeff Johnson
2024-06-03  3:25 ` wuqiang.matt
2024-06-03  6:45   ` Masami Hiramatsu
2024-07-11 18:14     ` Jeff Johnson
2024-07-15  8:30       ` Masami Hiramatsu
2024-07-15  9:12       ` Masami Hiramatsu
2024-07-15 14:25         ` Jeff Johnson
2024-07-15 16:11         ` Jeff Johnson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox