diff options
author | Jeff Johnson <[email protected]> | 2024-05-27 12:22:16 -0700 |
---|---|---|
committer | Christian Brauner <[email protected]> | 2024-05-28 12:06:59 +0200 |
commit | c8f0b69ca1a9117f173d014ff1eb8e708aaae6e9 (patch) | |
tree | 332e356bdecbde9e0aae884bdd576bd00414b5e5 | |
parent | c8e0f1ec1f7c0369b404c656b0cca737a7a3bf47 (diff) |
fs: autofs: add MODULE_DESCRIPTION()
Fix the 'make W=1' warning:
WARNING: modpost: missing MODULE_DESCRIPTION() in fs/autofs/autofs4.o
Signed-off-by: Jeff Johnson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Acked-by: Al Viro <[email protected]>
Acked-by: Ian Kent <[email protected]>
Signed-off-by: Christian Brauner <[email protected]>
-rw-r--r-- | fs/autofs/init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/autofs/init.c b/fs/autofs/init.c index b5e4dfa04ed0..1d644a35ffa0 100644 --- a/fs/autofs/init.c +++ b/fs/autofs/init.c @@ -38,4 +38,5 @@ static void __exit exit_autofs_fs(void) module_init(init_autofs_fs) module_exit(exit_autofs_fs) +MODULE_DESCRIPTION("Kernel automounter support"); MODULE_LICENSE("GPL"); |