aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnson <[email protected]>2024-05-31 16:45:16 -0700
committerAndrew Morton <[email protected]>2024-06-24 22:25:07 -0700
commit09aaf15a7826717b75d2b4305daaee099636ca5c (patch)
treee38e913e5756ba9b4440e656bfbc629efc4124d2
parent7ef148daa56dfcad7b554a79c28b8e94726771a5 (diff)
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/[email protected] Signed-off-by: Jeff Johnson <[email protected]> Reviewed-by: Matti Vaittinen <[email protected]> Cc: Mark Brown <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
-rw-r--r--lib/test_linear_ranges.c1
1 files changed, 1 insertions, 0 deletions
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");