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

Configure Feed

Select the types of activity you want to include in your feed.

lib/zlib: add missing MODULE_DESCRIPTION() macro

With ARCH=csky, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in lib/zlib_deflate/zlib_deflate.o

Add the missing invocation of the MODULE_DESCRIPTION() macro.

Link: https://lkml.kernel.org/r/20240613-md-csky-lib-zlib_deflate-v1-1-83504d9a27d6@quicinc.com
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Cc: Guo Ren <guoren@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

Jeff Johnson and committed by
Andrew Morton
bee6c683 c61d7259

+1
+1
lib/zlib_deflate/deflate_syms.c
··· 17 17 EXPORT_SYMBOL(zlib_deflateInit2); 18 18 EXPORT_SYMBOL(zlib_deflateEnd); 19 19 EXPORT_SYMBOL(zlib_deflateReset); 20 + MODULE_DESCRIPTION("Data compression using the deflation algorithm"); 20 21 MODULE_LICENSE("GPL");