From: Jeff Johnson Date: Fri, 31 May 2024 23:26:03 +0000 (-0700) Subject: lib: test_hmm: add missing MODULE_DESCRIPTION() macro X-Git-Tag: v6.11-rc1~85^2~317 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3c666d0a32d83ea5f500ec1ce02c801520044da1;p=thirdparty%2Fkernel%2Flinux.git 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/20240531-lib-md-test_hmm-v1-1-e4aa17daa57b@quicinc.com Signed-off-by: Jeff Johnson Cc: Jérôme Glisse Signed-off-by: Andrew Morton --- diff --git a/lib/test_hmm.c b/lib/test_hmm.c index b823ba7cb6a15..ee20e1f9bae92 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");