From: Jeff Johnson Date: Sat, 1 Jun 2024 00:13:16 +0000 (-0700) Subject: test_maple_tree: add the missing MODULE_DESCRIPTION() macro X-Git-Tag: v6.11-rc1~85^2~318 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a619dd394883ca01e19f81f8a2108cb616907538;p=thirdparty%2Fkernel%2Flinux.git test_maple_tree: add the missing MODULE_DESCRIPTION() macro make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_maple_tree.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Link: https://lkml.kernel.org/r/20240531-md-lib-test_maple_tree-v1-1-7b1b485aeec3@quicinc.com Signed-off-by: Jeff Johnson Reviewed-by: Liam R. Howlett Signed-off-by: Andrew Morton --- diff --git a/lib/test_maple_tree.c b/lib/test_maple_tree.c index 399380db449cd..31561e0e1a0d4 100644 --- a/lib/test_maple_tree.c +++ b/lib/test_maple_tree.c @@ -3946,4 +3946,5 @@ static void __exit maple_tree_harvest(void) module_init(maple_tree_seed); module_exit(maple_tree_harvest); MODULE_AUTHOR("Liam R. Howlett "); +MODULE_DESCRIPTION("maple tree API test module"); MODULE_LICENSE("GPL");