summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJeff Johnson <quic_jjohnson@quicinc.com>2024-05-31 17:23:09 -0700
committerAndrew Morton <akpm@linux-foundation.org>2024-06-24 22:25:07 -0700
commit7ef148daa56dfcad7b554a79c28b8e94726771a5 (patch)
treea5ace399189a4a9648b30a4e94c6e5d39cd27d1c /lib
parentd46a555d3cd97132e21014b28a459c928925fa0f (diff)
downloadlinux-stable-7ef148daa56dfcad7b554a79c28b8e94726771a5.tar.gz
linux-stable-7ef148daa56dfcad7b554a79c28b8e94726771a5.tar.bz2
linux-stable-7ef148daa56dfcad7b554a79c28b8e94726771a5.zip
lib/test_kmod: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_kmod.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Link: https://lkml.kernel.org/r/20240531-md-lib-test_kmod-v1-1-fdf11bc6095e@quicinc.com Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Cc: Luis Chamberlain <mcgrof@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/test_kmod.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/test_kmod.c b/lib/test_kmod.c
index 1eec3b7ac67c..064ed0fce75a 100644
--- a/lib/test_kmod.c
+++ b/lib/test_kmod.c
@@ -1223,4 +1223,5 @@ static void __exit test_kmod_exit(void)
module_exit(test_kmod_exit);
MODULE_AUTHOR("Luis R. Rodriguez <mcgrof@kernel.org>");
+MODULE_DESCRIPTION("kmod stress test driver");
MODULE_LICENSE("GPL");