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.

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>

authored by

Jeff Johnson and committed by
Shuah Khan
425ae3ab a5217468

+1
+1
lib/list-test.c
··· 1493 1493 1494 1494 kunit_test_suites(&list_test_module, &hlist_test_module, &klist_test_module); 1495 1495 1496 + MODULE_DESCRIPTION("KUnit test for the Kernel Linked-list structures"); 1496 1497 MODULE_LICENSE("GPL v2");