mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/
synced 2025-04-19 20:58:31 +09:00

Modules without a description now cause a warning: WARNING: modpost: missing MODULE_DESCRIPTION() in lib/zlib_inflate/zlib_inflate.o Link: https://lkml.kernel.org/r/20250324173242.1501003-6-arnd@kernel.org Fixes: 6c6c1fc09de3 ("modpost: require a MODULE_DESCRIPTION()") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Cc: Jeff Johnson <jeff.johnson@oss.qualcomm.com> Cc: Masahiro Yamada <masahiroy@kernel.org> Cc: Stehen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
23 lines
560 B
C
23 lines
560 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* linux/lib/zlib_inflate/inflate_syms.c
|
|
*
|
|
* Exported symbols for the inflate functionality.
|
|
*
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/zlib.h>
|
|
|
|
EXPORT_SYMBOL(zlib_inflate_workspacesize);
|
|
EXPORT_SYMBOL(zlib_inflate);
|
|
EXPORT_SYMBOL(zlib_inflateInit2);
|
|
EXPORT_SYMBOL(zlib_inflateEnd);
|
|
EXPORT_SYMBOL(zlib_inflateReset);
|
|
EXPORT_SYMBOL(zlib_inflateIncomp);
|
|
EXPORT_SYMBOL(zlib_inflate_blob);
|
|
MODULE_DESCRIPTION("Data decompression using the deflation algorithm");
|
|
MODULE_LICENSE("GPL");
|