From: Jeff Johnson Date: Fri, 31 May 2024 23:45:16 +0000 (-0700) Subject: lib/test_linear_ranges: add missing MODULE_DESCRIPTION() macro X-Git-Tag: block-6.11-20240726~14^2~47 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=09aaf15a7826717b75d2b4305daaee099636ca5c;p=linux-block.git lib/test_linear_ranges: add missing MODULE_DESCRIPTION() macro make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_linear_ranges.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Link: https://lkml.kernel.org/r/20240531-md-lib-test_linear_ranges-v1-1-053a1aad37c6@quicinc.com Signed-off-by: Jeff Johnson Reviewed-by: Matti Vaittinen Cc: Mark Brown Signed-off-by: Andrew Morton --- diff --git a/lib/test_linear_ranges.c b/lib/test_linear_ranges.c index c18f9c0f1f25..f482be00f1bc 100644 --- a/lib/test_linear_ranges.c +++ b/lib/test_linear_ranges.c @@ -216,4 +216,5 @@ static struct kunit_suite range_test_module = { kunit_test_suites(&range_test_module); +MODULE_DESCRIPTION("KUnit test for the linear_ranges helper"); MODULE_LICENSE("GPL");