From: Jeff Johnson Date: Tue, 2 Jul 2024 20:27:34 +0000 (-0700) Subject: hostfs: add missing MODULE_DESCRIPTION() macro X-Git-Tag: v6.11-rc1~48^2~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=be5d511d1a2b242b35a42f9d512bcf3de6f35bde;p=thirdparty%2Fkernel%2Flinux.git 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 Link: https://patch.msgid.link/20240702-md-um-fs-hostfs-v1-1-fd2b565027e7@quicinc.com Signed-off-by: Johannes Berg --- diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c index 2c4d503a62e02..6798d25d25a3e 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");