diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-05-31 16:58:42 -0700 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2024-06-07 15:59:15 -0600 |
commit | 425ae3ab5a1fa744a00680f059cf1accaaaecb28 (patch) | |
tree | dd9debafb988539af98b3b2f8338e26b7ff85b59 /lib | |
parent | a5217468214c228b89da37291de604cd756914ab (diff) |
list: test: add the missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in lib/list-test.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/list-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/list-test.c b/lib/list-test.c index 383ee0ad582e..37cbc33e9fdb 100644 --- a/lib/list-test.c +++ b/lib/list-test.c @@ -1493,4 +1493,5 @@ static struct kunit_suite klist_test_module = { kunit_test_suites(&list_test_module, &hlist_test_module, &klist_test_module); +MODULE_DESCRIPTION("KUnit test for the Kernel Linked-list structures"); MODULE_LICENSE("GPL v2"); |