diff options
author | Jeff Johnson <[email protected]> | 2024-07-02 13:27:34 -0700 |
---|---|---|
committer | Johannes Berg <[email protected]> | 2024-07-03 12:25:17 +0200 |
commit | be5d511d1a2b242b35a42f9d512bcf3de6f35bde (patch) | |
tree | 9ada7fd0c0a300f9ad4d9f97c2a23c9ca53e58e9 | |
parent | 36c5005f11bec763ae296732c71170aaea8ea204 (diff) |
hostfs: add missing MODULE_DESCRIPTION() macro
With ARCH=um, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in fs/hostfs/hostfs.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Johannes Berg <[email protected]>
-rw-r--r-- | fs/hostfs/hostfs_kern.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c index 2c4d503a62e0..6798d25d25a3 100644 --- a/fs/hostfs/hostfs_kern.c +++ b/fs/hostfs/hostfs_kern.c @@ -1012,4 +1012,5 @@ static void __exit exit_hostfs(void) module_init(init_hostfs) module_exit(exit_hostfs) +MODULE_DESCRIPTION("User-Mode Linux Host filesystem"); MODULE_LICENSE("GPL"); |