]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
lib/test_kmod: add missing MODULE_DESCRIPTION() macro
authorJeff Johnson <quic_jjohnson@quicinc.com>
Sat, 1 Jun 2024 00:23:09 +0000 (17:23 -0700)
committerAndrew Morton <akpm@linux-foundation.org>
Tue, 25 Jun 2024 05:25:07 +0000 (22:25 -0700)
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>
lib/test_kmod.c

index 1eec3b7ac67c29e532cd87a15895d9b7447088a3..064ed0fce75a95605a8441db2946b6b57c91ac60 100644 (file)
@@ -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");