]> www.infradead.org Git - users/jedix/linux-maple.git/commit
crypto: lib - add missing MODULE_DESCRIPTION() macros
authorJeff Johnson <quic_jjohnson@quicinc.com>
Sun, 16 Jun 2024 06:14:57 +0000 (23:14 -0700)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 21 Jun 2024 12:04:19 +0000 (22:04 +1000)
commit3cbe18b0bc9f0653709adbdadad04491a190c71a
treea7291a0706af6cfa4ee738f6ad250694d4ace937
parent70d57ffbb11cfe1a686e6051f36413866502492d
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>
lib/crypto/sha1.c
lib/crypto/sha256.c
lib/crypto/utils.c