diff options
author | Jeff Johnson <[email protected]> | 2024-06-15 17:47:26 -0700 |
---|---|---|
committer | Alexander Gordeev <[email protected]> | 2024-06-28 14:52:30 +0200 |
commit | 4657a8a1c0538abc9e841fa64692d2c59edac2c0 (patch) | |
tree | 1c2de66844fa2dc9ff901a43667159c5d14123b2 /arch/s390/lib/test_kprobes.c | |
parent | 68d7bb54215f4b941fc58cfa22e6e0ea54e70f42 (diff) |
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 <[email protected]>
Signed-off-by: Jeff Johnson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Vasily Gorbik <[email protected]>
Signed-off-by: Alexander Gordeev <[email protected]>
Diffstat (limited to 'arch/s390/lib/test_kprobes.c')
-rw-r--r-- | arch/s390/lib/test_kprobes.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/s390/lib/test_kprobes.c b/arch/s390/lib/test_kprobes.c index 9e62d62812e5..9021298c3e8a 100644 --- a/arch/s390/lib/test_kprobes.c +++ b/arch/s390/lib/test_kprobes.c @@ -72,4 +72,5 @@ static struct kunit_suite kprobes_test_suite = { kunit_test_suites(&kprobes_test_suite); +MODULE_DESCRIPTION("KUnit tests for kprobes"); MODULE_LICENSE("GPL"); |