Message ID | 20240525-md-fs-minix-v1-1-824800f78f7d@quicinc.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | fs: minix: add MODULE_DESCRIPTION() | expand |
On Sat, 25 May 2024 08:25:56 -0700, Jeff Johnson wrote: > Fix the 'make W=1' warning: > WARNING: modpost: missing MODULE_DESCRIPTION() in fs/minix/minix.o > > Applied to the vfs.misc branch of the vfs/vfs.git tree. Patches in the vfs.misc branch should appear in linux-next soon. Please report any outstanding bugs that were missed during review in a new review to the original patch series allowing us to drop it. It's encouraged to provide Acked-bys and Reviewed-bys even though the patch has now been applied. If possible patch trailers will be updated. Note that commit hashes shown below are subject to change due to rebase, trailer updates or similar. If in doubt, please check the listed branch. tree: https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git branch: vfs.misc [1/1] fs: minix: add MODULE_DESCRIPTION() https://git.kernel.org/vfs/vfs/c/95f90dd0a954
diff --git a/fs/minix/inode.c b/fs/minix/inode.c index 7f9a2d8aa420..1c3df63162ef 100644 --- a/fs/minix/inode.c +++ b/fs/minix/inode.c @@ -730,5 +730,6 @@ static void __exit exit_minix_fs(void) module_init(init_minix_fs) module_exit(exit_minix_fs) +MODULE_DESCRIPTION("Minix file system"); MODULE_LICENSE("GPL");
Fix the 'make W=1' warning: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/minix/minix.o Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> --- fs/minix/inode.c | 1 + 1 file changed, 1 insertion(+) --- base-commit: 07506d1011521a4a0deec1c69721c7405c40049b change-id: 20240525-md-fs-minix-2f54b07b8aff