summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJeff Johnson <quic_jjohnson@quicinc.com>2024-05-31 19:19:09 -0700
committerAndrew Morton <akpm@linux-foundation.org>2024-06-24 22:25:06 -0700
commit683da20738fd3e0687a939b684c4a94a09de096c (patch)
treeeda7e25ea7425af52bf0365e4cd2766705300f40 /lib
parent1c5a13b39daf823b4b0349ef2345bf997cb8c257 (diff)
downloadlinux-stable-683da20738fd3e0687a939b684c4a94a09de096c.tar.gz
linux-stable-683da20738fd3e0687a939b684c4a94a09de096c.tar.bz2
linux-stable-683da20738fd3e0687a939b684c4a94a09de096c.zip
uuid: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_uuid.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Link: https://lkml.kernel.org/r/20240531-md-lib-test_uuid-v1-1-67fa498104c0@quicinc.com Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/test_uuid.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/test_uuid.c b/lib/test_uuid.c
index cd819c397dc7..0124fad5d72c 100644
--- a/lib/test_uuid.c
+++ b/lib/test_uuid.c
@@ -130,4 +130,5 @@ static void __exit test_uuid_exit(void)
module_exit(test_uuid_exit);
MODULE_AUTHOR("Andy Shevchenko <andriy.shevchenko@linux.intel.com>");
+MODULE_DESCRIPTION("Test cases for lib/uuid.c module");
MODULE_LICENSE("Dual BSD/GPL");