diff mbox series

9p/fs: add MODULE_DESCIPTION

Message ID 20231025223107.1274963-1-asmadeus@codewreck.org (mailing list archive)
State New, archived
Headers show
Series 9p/fs: add MODULE_DESCIPTION | expand

Commit Message

Dominique Martinet Oct. 25, 2023, 10:31 p.m. UTC
Fix modpost warning that MODULE_DESCRIPTION is missing in fs/9p/9p.o

Signed-off-by: Dominique Martinet <asmadeus@codewreck.org>
---
Probably doesn't really matter after all this time, but noticed this
when double-checking there weren't any warnings left in W=1... Might as
well get rid of this:
WARNING: modpost: missing MODULE_DESCRIPTION() in fs/9p/9p.o

 fs/9p/v9fs.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Christian Schoenebeck Oct. 26, 2023, 12:47 p.m. UTC | #1
On Thursday, October 26, 2023 12:31:07 AM CEST Dominique Martinet wrote:
> Fix modpost warning that MODULE_DESCRIPTION is missing in fs/9p/9p.o
> 
> Signed-off-by: Dominique Martinet <asmadeus@codewreck.org>
> ---

Reviewed-by: Christian Schoenebeck <linux_oss@crudebyte.com>

> Probably doesn't really matter after all this time, but noticed this
> when double-checking there weren't any warnings left in W=1... Might as
> well get rid of this:
> WARNING: modpost: missing MODULE_DESCRIPTION() in fs/9p/9p.o
> 
>  fs/9p/v9fs.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/fs/9p/v9fs.c b/fs/9p/v9fs.c
> index d525957594b6..61dbe52bb3a3 100644
> --- a/fs/9p/v9fs.c
> +++ b/fs/9p/v9fs.c
> @@ -732,4 +732,5 @@ module_exit(exit_v9fs)
>  MODULE_AUTHOR("Latchesar Ionkov <lucho@ionkov.net>");
>  MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>");
>  MODULE_AUTHOR("Ron Minnich <rminnich@lanl.gov>");
> +MODULE_DESCRIPTION("9P Client File System");
>  MODULE_LICENSE("GPL");
>
diff mbox series

Patch

diff --git a/fs/9p/v9fs.c b/fs/9p/v9fs.c
index d525957594b6..61dbe52bb3a3 100644
--- a/fs/9p/v9fs.c
+++ b/fs/9p/v9fs.c
@@ -732,4 +732,5 @@  module_exit(exit_v9fs)
 MODULE_AUTHOR("Latchesar Ionkov <lucho@ionkov.net>");
 MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>");
 MODULE_AUTHOR("Ron Minnich <rminnich@lanl.gov>");
+MODULE_DESCRIPTION("9P Client File System");
 MODULE_LICENSE("GPL");