diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-01 01:07:26 +0200 |
---|---|---|
committer | Kees Cook <kees@kernel.org> | 2024-06-28 17:54:55 +0200 |
commit | 6a4805b2f51a2e5dc346651e0d0cd8abcc2937c8 (patch) | |
tree | 3d9373e4734851cfd1ed86d87c090eb8e59138c1 /lib/string_kunit.c | |
parent | MAINTAINERS: Update entries for Kees Cook (diff) | |
download | linux-6a4805b2f51a2e5dc346651e0d0cd8abcc2937c8.tar.xz linux-6a4805b2f51a2e5dc346651e0d0cd8abcc2937c8.zip |
string: kunit: add missing MODULE_DESCRIPTION() macros
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in lib/string_kunit.o
WARNING: modpost: missing MODULE_DESCRIPTION() in lib/string_helpers_kunit.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link: https://lore.kernel.org/r/20240531-md-lib-string-v1-1-2738cf057d94@quicinc.com
Signed-off-by: Kees Cook <kees@kernel.org>
Diffstat (limited to 'lib/string_kunit.c')
-rw-r--r-- | lib/string_kunit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/string_kunit.c b/lib/string_kunit.c index 2a812decf14b..c919e3293da6 100644 --- a/lib/string_kunit.c +++ b/lib/string_kunit.c @@ -633,4 +633,5 @@ static struct kunit_suite string_test_suite = { kunit_test_suites(&string_test_suite); +MODULE_DESCRIPTION("Test cases for string functions"); MODULE_LICENSE("GPL v2"); |