projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
683da20
)
siphash: add missing MODULE_DESCRIPTION() macro
author
Jeff Johnson
<quic_jjohnson@quicinc.com>
Sat, 1 Jun 2024 01:49:47 +0000
(18:49 -0700)
committer
Andrew Morton
<akpm@linux-foundation.org>
Tue, 25 Jun 2024 05:25:07 +0000
(22:25 -0700)
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>
lib/siphash_kunit.c
patch
|
blob
|
history
diff --git
a/lib/siphash_kunit.c
b/lib/siphash_kunit.c
index
a3c697e
..
26bd4e8
100644
(file)
--- a/
lib/siphash_kunit.c
+++ b/
lib/siphash_kunit.c
@@
-194,4
+194,5
@@
static struct kunit_suite siphash_test_suite = {
kunit_test_suite(siphash_test_suite);
MODULE_AUTHOR("Jason A. Donenfeld <Jason@zx2c4.com>");
+MODULE_DESCRIPTION("Test cases for siphash.c");
MODULE_LICENSE("Dual BSD/GPL");