summaryrefslogtreecommitdiffstats
path: root/fs/hostfs
diff options
context:
space:
mode:
authorJeff Johnson <quic_jjohnson@quicinc.com>2024-07-02 22:27:34 +0200
committerJohannes Berg <johannes.berg@intel.com>2024-07-03 12:25:17 +0200
commitbe5d511d1a2b242b35a42f9d512bcf3de6f35bde (patch)
tree9ada7fd0c0a300f9ad4d9f97c2a23c9ca53e58e9 /fs/hostfs
parentum: harddog: add missing MODULE_DESCRIPTION() macro (diff)
downloadlinux-be5d511d1a2b242b35a42f9d512bcf3de6f35bde.tar.xz
linux-be5d511d1a2b242b35a42f9d512bcf3de6f35bde.zip
hostfs: add missing MODULE_DESCRIPTION() macro
With ARCH=um, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/hostfs/hostfs.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Link: https://patch.msgid.link/20240702-md-um-fs-hostfs-v1-1-fd2b565027e7@quicinc.com Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'fs/hostfs')
-rw-r--r--fs/hostfs/hostfs_kern.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c
index 2c4d503a62e0..6798d25d25a3 100644
--- a/fs/hostfs/hostfs_kern.c
+++ b/fs/hostfs/hostfs_kern.c
@@ -1012,4 +1012,5 @@ static void __exit exit_hostfs(void)
module_init(init_hostfs)
module_exit(exit_hostfs)
+MODULE_DESCRIPTION("User-Mode Linux Host filesystem");
MODULE_LICENSE("GPL");