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

Configure Feed

Select the types of activity you want to include in your feed.

siphash: add missing MODULE_DESCRIPTION() macro

make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in lib/siphash_kunit.o

Add the missing invocation of the MODULE_DESCRIPTION() macro.

Link: https://lkml.kernel.org/r/20240531-md-lib-siphash_kunit-v1-1-38688065b796@quicinc.com
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Cc: Jason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

Jeff Johnson and committed by
Andrew Morton
d46a555d 683da207

+1
+1
lib/siphash_kunit.c
··· 194 194 kunit_test_suite(siphash_test_suite); 195 195 196 196 MODULE_AUTHOR("Jason A. Donenfeld <Jason@zx2c4.com>"); 197 + MODULE_DESCRIPTION("Test cases for siphash.c"); 197 198 MODULE_LICENSE("Dual BSD/GPL");