diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-01 03:49:47 +0200 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2024-06-25 07:25:07 +0200 |
commit | d46a555d3cd97132e21014b28a459c928925fa0f (patch) | |
tree | 74922e619d2ad9edde9c20bf592f0aa328065c85 /lib | |
parent | uuid: add missing MODULE_DESCRIPTION() macro (diff) | |
download | linux-d46a555d3cd97132e21014b28a459c928925fa0f.tar.xz linux-d46a555d3cd97132e21014b28a459c928925fa0f.zip |
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>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/siphash_kunit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/siphash_kunit.c b/lib/siphash_kunit.c index a3c697e8be35..26bd4e8dc03e 100644 --- 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"); |