From: Arnd Bergmann Date: Mon, 24 Mar 2025 17:32:32 +0000 (+0100) Subject: ucs2_string: add module description X-Git-Tag: v6.15-rc3~43^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=91640531b92ec63e260b9d5c681d387676ec462c;p=thirdparty%2Flinux.git ucs2_string: add module description Modules without a description now cause a warning: WARNING: modpost: missing MODULE_DESCRIPTION() in lib/ucs2_string.o Link: https://lkml.kernel.org/r/20250324173242.1501003-7-arnd@kernel.org Fixes: 6c6c1fc09de3 ("modpost: require a MODULE_DESCRIPTION()") Signed-off-by: Arnd Bergmann Cc: Jeff Johnson Cc: Masahiro Yamada Cc: Stehen Rothwell Signed-off-by: Andrew Morton --- diff --git a/lib/ucs2_string.c b/lib/ucs2_string.c index 9308bcfb2ad50..dfb4f2358cabf 100644 --- a/lib/ucs2_string.c +++ b/lib/ucs2_string.c @@ -165,4 +165,5 @@ ucs2_as_utf8(u8 *dest, const ucs2_char_t *src, unsigned long maxlength) } EXPORT_SYMBOL(ucs2_as_utf8); +MODULE_DESCRIPTION("UCS2 string handling"); MODULE_LICENSE("GPL v2");