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:
32b0cf0
)
bus: vexpress-config: Add missing MODULE_DESCRIPTION() macro
author
Jeff Johnson
<quic_jjohnson@quicinc.com>
Thu, 13 Jun 2024 22:05:33 +0000
(15:05 -0700)
committer
Sudeep Holla
<sudeep.holla@arm.com>
Thu, 20 Jun 2024 08:43:33 +0000
(09:43 +0100)
With ARCH=arm64, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/bus/vexpress-config.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link:
https://lore.kernel.org/r/20240613-md-arm64-drivers-bus-v1-1-e8162434e0ca@quicinc.com
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
drivers/bus/vexpress-config.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/bus/vexpress-config.c
b/drivers/bus/vexpress-config.c
index d2c7ada90186827539d5e7aa6af73f40db0d0af5..64ee920721ee74e6ee425946ab67d070ffbd57c9 100644
(file)
--- a/
drivers/bus/vexpress-config.c
+++ b/
drivers/bus/vexpress-config.c
@@
-414,4
+414,5
@@
static struct platform_driver vexpress_syscfg_driver = {
.probe = vexpress_syscfg_probe,
};
module_platform_driver(vexpress_syscfg_driver);
+MODULE_DESCRIPTION("Versatile Express configuration bus");
MODULE_LICENSE("GPL v2");