Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

crypto: mips/poly1305 - add missing MODULE_DESCRIPTION() macro

With ARCH=mips, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in arch/mips/crypto/poly1305-mips.o

Add the missing invocation of the MODULE_DESCRIPTION() macro.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>

authored by

Jeff Johnson and committed by
Thomas Bogendoerfer
f5e9d561 8de4ed75

+1
+1
arch/mips/crypto/poly1305-glue.c
··· 186 186 module_init(mips_poly1305_mod_init); 187 187 module_exit(mips_poly1305_mod_exit); 188 188 189 + MODULE_DESCRIPTION("Poly1305 transform (MIPS accelerated"); 189 190 MODULE_LICENSE("GPL v2"); 190 191 MODULE_ALIAS_CRYPTO("poly1305"); 191 192 MODULE_ALIAS_CRYPTO("poly1305-mips");