diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-02 04:05:00 +0300 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2024-07-04 05:30:04 +0300 |
commit | 656fe3ee455e8d8dfa1c18292c508da26b29a39c (patch) | |
tree | 82f73c89d9803934f26d2d96db0e86a5f7e0e60c /samples/kmemleak/kmemleak-test.c | |
parent | 66f44583f9b617d74ffa2487e75a9c3adf344ddb (diff) | |
download | linux-656fe3ee455e8d8dfa1c18292c508da26b29a39c.tar.xz |
kmemleak-test: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in samples/kmemleak/kmemleak-test.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Link: https://lkml.kernel.org/r/20240601-md-samples-kmemleak-v1-1-47186be7f0a8@quicinc.com
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'samples/kmemleak/kmemleak-test.c')
-rw-r--r-- | samples/kmemleak/kmemleak-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/samples/kmemleak/kmemleak-test.c b/samples/kmemleak/kmemleak-test.c index 6ced5ddd99d4..f7470ed85a79 100644 --- a/samples/kmemleak/kmemleak-test.c +++ b/samples/kmemleak/kmemleak-test.c @@ -96,4 +96,5 @@ static void __exit kmemleak_test_exit(void) } module_exit(kmemleak_test_exit); +MODULE_DESCRIPTION("Sample module to leak memory for kmemleak testing"); MODULE_LICENSE("GPL"); |