From 7ef148daa56dfcad7b554a79c28b8e94726771a5 Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Fri, 31 May 2024 17:23:09 -0700 Subject: 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 Reviewed-by: Lucas De Marchi Cc: Luis Chamberlain Signed-off-by: Andrew Morton --- lib/test_kmod.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') 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 "); +MODULE_DESCRIPTION("kmod stress test driver"); MODULE_LICENSE("GPL"); -- cgit v1.2.3