Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Jeff Johnson and committed by
Andrew Morton
683da207 1c5a13b3

+1
+1
lib/test_uuid.c
··· 130 130 module_exit(test_uuid_exit); 131 131 132 132 MODULE_AUTHOR("Andy Shevchenko <andriy.shevchenko@linux.intel.com>"); 133 + MODULE_DESCRIPTION("Test cases for lib/uuid.c module"); 133 134 MODULE_LICENSE("Dual BSD/GPL");