[PATCH v2] lib: test_objpool: add missing MODULE_DESCRIPTION() macro

From: Jeff Johnson
Date: Mon Jul 15 2024 - 10:19:22 EST


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.

Reviewed-by: Matt Wu <wuqiang.matt@xxxxxxxxxxxxx>
Signed-off-by: Jeff Johnson <quic_jjohnson@xxxxxxxxxxx>
---
Changes in v2:
- No changes to actual patch, just rebased, picked up Matt's Reviewed-by
tag, and added Masami & linux-trace-kernel
- Link to v1: https://lore.kernel.org/r/20240531-md-lib-test_objpool-v1-1-516efee92a05@xxxxxxxxxxx
---
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: 0c3836482481200ead7b416ca80c68a29cfdaabd
change-id: 20240531-md-lib-test_objpool-338d937f8666