diff options
author | Jeff Johnson <[email protected]> | 2024-06-19 07:38:14 -0700 |
---|---|---|
committer | Christian Brauner <[email protected]> | 2024-06-20 09:46:01 +0200 |
commit | 807221c54db6bc696b65106b4ee76286e435944d (patch) | |
tree | df473f2f32006f71e2380f974a45dd5c293bd140 | |
parent | d694e46afb4be5332877af2989e4d0b80b7df235 (diff) |
openpromfs: add missing MODULE_DESCRIPTION() macro
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 <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Christian Brauner <[email protected]>
-rw-r--r-- | fs/openpromfs/inode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/openpromfs/inode.c b/fs/openpromfs/inode.c index a7b527ea50d3..26ecda0e4d19 100644 --- 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"); |