aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJeff Johnson <[email protected]>2024-05-31 16:26:03 -0700
committerAndrew Morton <[email protected]>2024-07-03 19:30:05 -0700
commit3c666d0a32d83ea5f500ec1ce02c801520044da1 (patch)
treeea858dda0e9b5ff3c1fc1a2b189b875ca7f1f155 /lib
parenta619dd394883ca01e19f81f8a2108cb616907538 (diff)
lib: test_hmm: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_hmm.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Jeff Johnson <[email protected]> Cc: Jérôme Glisse <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
Diffstat (limited to 'lib')
-rw-r--r--lib/test_hmm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/test_hmm.c b/lib/test_hmm.c
index b823ba7cb6a1..ee20e1f9bae9 100644
--- a/lib/test_hmm.c
+++ b/lib/test_hmm.c
@@ -1550,4 +1550,5 @@ static void __exit hmm_dmirror_exit(void)
module_init(hmm_dmirror_init);
module_exit(hmm_dmirror_exit);
+MODULE_DESCRIPTION("HMM (Heterogeneous Memory Management) test module");
MODULE_LICENSE("GPL");