summaryrefslogtreecommitdiffstats
path: root/lib/crypto/utils.c
diff options
context:
space:
mode:
authorJeff Johnson <quic_jjohnson@quicinc.com>2024-06-15 23:14:57 -0700
committerHerbert Xu <herbert@gondor.apana.org.au>2024-06-21 22:04:19 +1000
commit3cbe18b0bc9f0653709adbdadad04491a190c71a (patch)
treea7291a0706af6cfa4ee738f6ad250694d4ace937 /lib/crypto/utils.c
parent70d57ffbb11cfe1a686e6051f36413866502492d (diff)
downloadlinux-3cbe18b0bc9f0653709adbdadad04491a190c71a.tar.gz
linux-3cbe18b0bc9f0653709adbdadad04491a190c71a.tar.bz2
linux-3cbe18b0bc9f0653709adbdadad04491a190c71a.zip
crypto: lib - add missing MODULE_DESCRIPTION() macros
With ARCH=arm, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in lib/crypto/libsha256.o Add the missing invocation of the MODULE_DESCRIPTION() macro to all files which have a MODULE_LICENSE(). This includes sha1.c and utils.c which, although they did not produce a warning with the arm allmodconfig configuration, may cause this warning with other configurations. Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'lib/crypto/utils.c')
-rw-r--r--lib/crypto/utils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/crypto/utils.c b/lib/crypto/utils.c
index c852c7151b0a..373364141408 100644
--- a/lib/crypto/utils.c
+++ b/lib/crypto/utils.c
@@ -85,4 +85,5 @@ void __crypto_xor(u8 *dst, const u8 *src1, const u8 *src2, unsigned int len)
}
EXPORT_SYMBOL_GPL(__crypto_xor);
+MODULE_DESCRIPTION("Crypto library utility functions");
MODULE_LICENSE("GPL");