public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] crypto: xilinx - add missing MODULE_DESCRIPTION() macro
@ 2024-06-02 23:17 Jeff Johnson
  2024-06-03  6:52 ` Michal Simek
  2024-06-07 12:01 ` Herbert Xu
  0 siblings, 2 replies; 3+ messages in thread
From: Jeff Johnson @ 2024-06-02 23:17 UTC (permalink / raw)
  To: Herbert Xu, David S. Miller, Michal Simek
  Cc: linux-crypto, linux-arm-kernel, linux-kernel, kernel-janitors,
	Jeff Johnson

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 <quic_jjohnson@quicinc.com>
---
 drivers/crypto/xilinx/zynqmp-aes-gcm.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/crypto/xilinx/zynqmp-aes-gcm.c b/drivers/crypto/xilinx/zynqmp-aes-gcm.c
index e61405718840..7f0ec6887a39 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");

---
base-commit: a693b9c95abd4947c2d06e05733de5d470ab6586
change-id: 20240602-md-zynqmp-aes-gcm-c46078273370


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-06-07 12:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-02 23:17 [PATCH] crypto: xilinx - add missing MODULE_DESCRIPTION() macro Jeff Johnson
2024-06-03  6:52 ` Michal Simek
2024-06-07 12:01 ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox