From: Jeff Johnson Date: Sat, 1 Jun 2024 02:06:48 +0000 (-0700) Subject: ubsan: add missing MODULE_DESCRIPTION() macro X-Git-Tag: v6.11-rc1~85^2~319 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2ec83987a53e30f3b07090ebd3a03cc7febfc34c;p=thirdparty%2Flinux.git ubsan: add missing MODULE_DESCRIPTION() macro make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_ubsan.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Link: https://lkml.kernel.org/r/20240531-md-lib-test_ubsan-v1-1-c2a80d258842@quicinc.com Signed-off-by: Jeff Johnson Cc: Andrey Konovalov Cc: Andrey Ryabinin Cc: Kees Cook Cc: Marco Elver Signed-off-by: Andrew Morton --- diff --git a/lib/test_ubsan.c b/lib/test_ubsan.c index c288df9372ede..5d7b10e986107 100644 --- a/lib/test_ubsan.c +++ b/lib/test_ubsan.c @@ -156,4 +156,5 @@ static void __exit test_ubsan_exit(void) module_exit(test_ubsan_exit); MODULE_AUTHOR("Jinbum Park "); +MODULE_DESCRIPTION("UBSAN unit test"); MODULE_LICENSE("GPL v2");