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

lib/asn1_encoder: add missing MODULE_DESCRIPTION() macro

make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in lib/asn1_encoder.o

Add the missing invocation of the MODULE_DESCRIPTION() macro.

Link: https://lkml.kernel.org/r/20240601-md-lib-asn1_encoder-v1-1-8c634ed2d2e8@quicinc.com
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

Jeff Johnson and committed by
Andrew Morton
2e29fcb7 f069e33d

+1
+1
lib/asn1_encoder.c
··· 449 449 } 450 450 EXPORT_SYMBOL_GPL(asn1_encode_boolean); 451 451 452 + MODULE_DESCRIPTION("Simple encoder primitives for ASN.1 BER/DER/CER"); 452 453 MODULE_LICENSE("GPL");