Skip to content

Commit c8e0f1e

Browse files
Jeff Johnsonbrauner
authored andcommitted
fs: fat: add missing MODULE_DESCRIPTION() macros
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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Acked-by: OGAWA Hirofumi <[email protected]> Acked-by: Al Viro <[email protected]> Signed-off-by: Christian Brauner <[email protected]>
1 parent 2c2a3f6 commit c8e0f1e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

fs/fat/fat_test.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,4 +193,5 @@ static struct kunit_suite fat_test_suite = {
193193

194194
kunit_test_suites(&fat_test_suite);
195195

196+
MODULE_DESCRIPTION("KUnit tests for FAT filesystems");
196197
MODULE_LICENSE("GPL v2");

fs/fat/inode.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1978,4 +1978,5 @@ static void __exit exit_fat_fs(void)
19781978
module_init(init_fat_fs)
19791979
module_exit(exit_fat_fs)
19801980

1981+
MODULE_DESCRIPTION("Core FAT filesystem support");
19811982
MODULE_LICENSE("GPL");

0 commit comments

Comments
 (0)