aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnson <[email protected]>2024-05-27 10:50:29 -0700
committerChristian Brauner <[email protected]>2024-05-28 12:06:37 +0200
commit7cd99cea40030ac6189f6467ff3c23846dcedd3f (patch)
tree077360a4120363ff2b9584a445dc2d7fb4ebd076
parentd8fa38997a16f6eb47d9a4413342593633de7050 (diff)
fs: hpfs: add MODULE_DESCRIPTION()
Fix the 'make W=1' warning: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/hpfs/hpfs.o Signed-off-by: Jeff Johnson <[email protected]> Link: https://lore.kernel.org/r/[email protected] Acked-by: Al Viro <[email protected]> Signed-off-by: Christian Brauner <[email protected]>
-rw-r--r--fs/hpfs/super.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/hpfs/super.c b/fs/hpfs/super.c
index 314834a078e9..e73717daa5f9 100644
--- a/fs/hpfs/super.c
+++ b/fs/hpfs/super.c
@@ -793,4 +793,5 @@ static void __exit exit_hpfs_fs(void)
module_init(init_hpfs_fs)
module_exit(exit_hpfs_fs)
+MODULE_DESCRIPTION("OS/2 HPFS file system support");
MODULE_LICENSE("GPL");