projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2cbb74
)
crypto: sa2ul - add missing MODULE_DESCRIPTION() macro
author
Jeff Johnson
<quic_jjohnson@quicinc.com>
Sun, 2 Jun 2024 23:11:17 +0000
(16:11 -0700)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Fri, 7 Jun 2024 11:47:58 +0000
(19:47 +0800)
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/crypto/sa2ul.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/sa2ul.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/crypto/sa2ul.c
b/drivers/crypto/sa2ul.c
index 78a4930c648090f1d63f8ba6e7339f6c11c902e5..461eca40e8789f2c5e6016ad68b199665c1ba601 100644
(file)
--- a/
drivers/crypto/sa2ul.c
+++ b/
drivers/crypto/sa2ul.c
@@
-2496,4
+2496,5
@@
static struct platform_driver sa_ul_driver = {
},
};
module_platform_driver(sa_ul_driver);
+MODULE_DESCRIPTION("K3 SA2UL crypto accelerator driver");
MODULE_LICENSE("GPL v2");