summaryrefslogtreecommitdiff
path: root/fs/ufs
diff options
context:
space:
mode:
authorJeff Johnson <quic_jjohnson@quicinc.com>2024-05-10 22:02:15 +0300
committerAndrew Morton <akpm@linux-foundation.org>2024-07-05 09:43:10 +0300
commitc61d7259a6a9b2403097dce9f0b5f465a60bd62a (patch)
treeaa1583f1c2b059cd0bae690b296915f03cb2655a /fs/ufs
parentcedb08caac587b55c79d0463400839acab4638c0 (diff)
downloadlinux-c61d7259a6a9b2403097dce9f0b5f465a60bd62a.tar.xz
fs: ufs: add MODULE_DESCRIPTION()
Fix make W=1 warning: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/ufs/ufs.o Link: https://lkml.kernel.org/r/20240510-ufs-md-v1-1-85eaff8c6beb@quicinc.com Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Cc: Evgeniy Dushistov <dushistov@mail.ru> Cc: Christian Brauner <brauner@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'fs/ufs')
-rw-r--r--fs/ufs/super.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ufs/super.c b/fs/ufs/super.c
index 44666afc6209..bc625788589c 100644
--- a/fs/ufs/super.c
+++ b/fs/ufs/super.c
@@ -1540,4 +1540,5 @@ static void __exit exit_ufs_fs(void)
module_init(init_ufs_fs)
module_exit(exit_ufs_fs)
+MODULE_DESCRIPTION("UFS Filesystem");
MODULE_LICENSE("GPL");