Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

s390/lib: Add missing MODULE_DESCRIPTION() macros

With ARCH=s390, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in arch/s390/lib/test_kprobes_s390.o
WARNING: modpost: missing MODULE_DESCRIPTION() in arch/s390/lib/test_unwind.o
WARNING: modpost: missing MODULE_DESCRIPTION() in arch/s390/lib/test_modules.o

Add the missing invocations of the MODULE_DESCRIPTION() macro.

Acked-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link: https://lore.kernel.org/r/20240615-md-s390-arch-s390-lib-v1-1-d7424b943973@quicinc.com
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>

authored by

Jeff Johnson and committed by
Alexander Gordeev
4657a8a1 68d7bb54

+3
+1
arch/s390/lib/test_kprobes.c
··· 72 72 73 73 kunit_test_suites(&kprobes_test_suite); 74 74 75 + MODULE_DESCRIPTION("KUnit tests for kprobes"); 75 76 MODULE_LICENSE("GPL");
+1
arch/s390/lib/test_modules.c
··· 29 29 30 30 kunit_test_suites(&modules_test_suite); 31 31 32 + MODULE_DESCRIPTION("KUnit test that modules with many relocations are loaded properly"); 32 33 MODULE_LICENSE("GPL");
+1
arch/s390/lib/test_unwind.c
··· 519 519 520 520 kunit_test_suites(&test_unwind_suite); 521 521 522 + MODULE_DESCRIPTION("KUnit test for unwind_for_each_frame"); 522 523 MODULE_LICENSE("GPL");