From: Jeff Johnson Date: Sun, 2 Jun 2024 23:17:08 +0000 (-0700) Subject: crypto: xilinx - add missing MODULE_DESCRIPTION() macro X-Git-Tag: v6.11-rc1~119^2~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ed6261d553f505e6b0ce8593bf3f3792928b0ab8;p=thirdparty%2Fkernel%2Flinux.git crypto: xilinx - add missing MODULE_DESCRIPTION() macro make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/crypto/xilinx/zynqmp-aes-gcm.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson Reviewed-by: Michal Simek Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/xilinx/zynqmp-aes-gcm.c b/drivers/crypto/xilinx/zynqmp-aes-gcm.c index e614057188409..7f0ec6887a399 100644 --- a/drivers/crypto/xilinx/zynqmp-aes-gcm.c +++ b/drivers/crypto/xilinx/zynqmp-aes-gcm.c @@ -446,4 +446,5 @@ static struct platform_driver zynqmp_aes_driver = { }; module_platform_driver(zynqmp_aes_driver); +MODULE_DESCRIPTION("Xilinx ZynqMP AES Driver"); MODULE_LICENSE("GPL");