summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJeff Johnson <quic_jjohnson@quicinc.com>2024-06-01 16:09:47 -0700
committerAndrew Morton <akpm@linux-foundation.org>2024-06-24 22:25:06 -0700
commit2e29fcb7743649649418e9aadcbcf032d2ec488f (patch)
treea52454aa0de184ae185d499ddccb6bf8ec10ecf4 /lib
parentf069e33dafe17aab332e6671275cc61d16795064 (diff)
downloadlinux-2e29fcb7743649649418e9aadcbcf032d2ec488f.tar.gz
linux-2e29fcb7743649649418e9aadcbcf032d2ec488f.tar.bz2
linux-2e29fcb7743649649418e9aadcbcf032d2ec488f.zip
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>
Diffstat (limited to 'lib')
-rw-r--r--lib/asn1_encoder.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/asn1_encoder.c b/lib/asn1_encoder.c
index 0fd3c454a468..92f35aae13b1 100644
--- a/lib/asn1_encoder.c
+++ b/lib/asn1_encoder.c
@@ -449,4 +449,5 @@ asn1_encode_boolean(unsigned char *data, const unsigned char *end_data,
}
EXPORT_SYMBOL_GPL(asn1_encode_boolean);
+MODULE_DESCRIPTION("Simple encoder primitives for ASN.1 BER/DER/CER");
MODULE_LICENSE("GPL");