diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-05-27 12:22:16 -0700 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2024-05-28 12:06:59 +0200 |
commit | c8f0b69ca1a9117f173d014ff1eb8e708aaae6e9 (patch) | |
tree | 332e356bdecbde9e0aae884bdd576bd00414b5e5 /fs/autofs/init.c | |
parent | c8e0f1ec1f7c0369b404c656b0cca737a7a3bf47 (diff) | |
download | linux-stable-c8f0b69ca1a9117f173d014ff1eb8e708aaae6e9.tar.gz linux-stable-c8f0b69ca1a9117f173d014ff1eb8e708aaae6e9.tar.bz2 linux-stable-c8f0b69ca1a9117f173d014ff1eb8e708aaae6e9.zip |
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 <quic_jjohnson@quicinc.com>
Link: https://lore.kernel.org/r/20240527-md-fs-autofs-v1-1-e06db1951bd1@quicinc.com
Acked-by: Al Viro <viro@zeniv.linux.org.uk>
Acked-by: Ian Kent <raven@themaw.net>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/autofs/init.c')
-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"); |