[PATCH] 9p/fs: add MODULE_DESCIPTION

From: Dominique Martinet
Date: Wed Oct 25 2023 - 18:31:27 EST


Fix modpost warning that MODULE_DESCRIPTION is missing in fs/9p/9p.o

Signed-off-by: Dominique Martinet <asmadeus@xxxxxxxxxxxxx>
---
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@xxxxxxxxxx>");
MODULE_AUTHOR("Eric Van Hensbergen <ericvh@xxxxxxxxx>");
MODULE_AUTHOR("Ron Minnich <rminnich@xxxxxxxx>");
+MODULE_DESCRIPTION("9P Client File System");
MODULE_LICENSE("GPL");
--
2.41.0