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:
d694e46
)
openpromfs: add missing MODULE_DESCRIPTION() macro
author
Jeff Johnson
<quic_jjohnson@quicinc.com>
Wed, 19 Jun 2024 14:38:14 +0000
(07:38 -0700)
committer
Christian Brauner
<brauner@kernel.org>
Thu, 20 Jun 2024 07:46:01 +0000
(09:46 +0200)
With ARCH=sparc, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in fs/openpromfs/openpromfs.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/20240619-md-sparc-fs-openpromfs-v1-1-51c85ce90fa3@quicinc.com
Signed-off-by: Christian Brauner <brauner@kernel.org>
fs/openpromfs/inode.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/openpromfs/inode.c
b/fs/openpromfs/inode.c
index a7b527ea50d3ca6962313958c93601e46eee1a35..26ecda0e4d19dcf33576584d398ea027bda91684 100644
(file)
--- a/
fs/openpromfs/inode.c
+++ b/
fs/openpromfs/inode.c
@@
-471,4
+471,5
@@
static void __exit exit_openprom_fs(void)
module_init(init_openprom_fs)
module_exit(exit_openprom_fs)
+MODULE_DESCRIPTION("OpenPROM filesystem support");
MODULE_LICENSE("GPL");