diff options
author | Jeff Johnson <[email protected]> | 2024-06-01 16:09:47 -0700 |
---|---|---|
committer | Andrew Morton <[email protected]> | 2024-06-24 22:25:06 -0700 |
commit | 2e29fcb7743649649418e9aadcbcf032d2ec488f (patch) | |
tree | a52454aa0de184ae185d499ddccb6bf8ec10ecf4 | |
parent | f069e33dafe17aab332e6671275cc61d16795064 (diff) |
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/[email protected]
Signed-off-by: Jeff Johnson <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
-rw-r--r-- | lib/asn1_encoder.c | 1 |
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"); |