public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fs: fat: add missing MODULE_DESCRIPTION() macros
@ 2024-05-27 18:00 Jeff Johnson
  2024-05-28  3:39 ` OGAWA Hirofumi
  2024-05-28 11:34 ` Christian Brauner
  0 siblings, 2 replies; 3+ messages in thread
From: Jeff Johnson @ 2024-05-27 18:00 UTC (permalink / raw)
  To: OGAWA Hirofumi, Alexander Viro, Christian Brauner
  Cc: linux-fsdevel, linux-kernel, kernel-janitors, Jeff Johnson

Fix the 'make W=1' warnings:
WARNING: modpost: missing MODULE_DESCRIPTION() in fs/fat/fat.o
WARNING: modpost: missing MODULE_DESCRIPTION() in fs/fat/fat_test.o

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
---
 fs/fat/fat_test.c | 1 +
 fs/fat/inode.c    | 1 +
 2 files changed, 2 insertions(+)

diff --git a/fs/fat/fat_test.c b/fs/fat/fat_test.c
index 2dab4ca1d0d8..1f0062659067 100644
--- a/fs/fat/fat_test.c
+++ b/fs/fat/fat_test.c
@@ -193,4 +193,5 @@ static struct kunit_suite fat_test_suite = {
 
 kunit_test_suites(&fat_test_suite);
 
+MODULE_DESCRIPTION("KUnit tests for FAT filesystems");
 MODULE_LICENSE("GPL v2");
diff --git a/fs/fat/inode.c b/fs/fat/inode.c
index d9e6fbb6f246..3027d275dbf1 100644
--- a/fs/fat/inode.c
+++ b/fs/fat/inode.c
@@ -1978,4 +1978,5 @@ static void __exit exit_fat_fs(void)
 module_init(init_fat_fs)
 module_exit(exit_fat_fs)
 
+MODULE_DESCRIPTION("Core FAT filesystem support");
 MODULE_LICENSE("GPL");

---
base-commit: 2bfcfd584ff5ccc8bb7acde19b42570414bf880b
change-id: 20240527-md-fs-fat-bea9424c9303


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-05-28 11:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-27 18:00 [PATCH] fs: fat: add missing MODULE_DESCRIPTION() macros Jeff Johnson
2024-05-28  3:39 ` OGAWA Hirofumi
2024-05-28 11:34 ` Christian Brauner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox