Skip to content

Commit

Permalink
lib/zlib: add missing MODULE_DESCRIPTION() macro
Browse files Browse the repository at this point in the history
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/[email protected]
Signed-off-by: Jeff Johnson <[email protected]>
Cc: Guo Ren <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
  • Loading branch information
Jeff Johnson authored and akpm00 committed Jul 5, 2024
1 parent c61d725 commit bee6c68
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/zlib_deflate/deflate_syms.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ EXPORT_SYMBOL(zlib_deflate);
EXPORT_SYMBOL(zlib_deflateInit2);
EXPORT_SYMBOL(zlib_deflateEnd);
EXPORT_SYMBOL(zlib_deflateReset);
MODULE_DESCRIPTION("Data compression using the deflation algorithm");
MODULE_LICENSE("GPL");

0 comments on commit bee6c68

Please sign in to comment.