From: Jeff Johnson Date: Fri, 7 Jun 2024 01:47:06 +0000 (-0700) Subject: KEYS: trusted: add missing MODULE_DESCRIPTION() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=0a1ba36536c62b48b911eb2c122d892af3ac6991;p=linux.git KEYS: trusted: add missing MODULE_DESCRIPTION() kbuild reports: WARNING: modpost: missing MODULE_DESCRIPTION() in security/keys/trusted-keys/trusted.o Add the missing MODULE_DESCRIPTION() macro invocation. Signed-off-by: Jeff Johnson Reviewed-by: Jarkko Sakkinen Signed-off-by: Jarkko Sakkinen --- diff --git a/security/keys/trusted-keys/trusted_core.c b/security/keys/trusted-keys/trusted_core.c index 5113aeae5628..e2d9644efde1 100644 --- a/security/keys/trusted-keys/trusted_core.c +++ b/security/keys/trusted-keys/trusted_core.c @@ -395,4 +395,5 @@ static void __exit cleanup_trusted(void) late_initcall(init_trusted); module_exit(cleanup_trusted); +MODULE_DESCRIPTION("Trusted Key type"); MODULE_LICENSE("GPL");