Message ID | 20240524-md-fs-sysv-v1-1-9ebcd4f61aa5@quicinc.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | fs: sysv: add MODULE_DESCRIPTION() | expand |
On Fri, 24 May 2024 14:11:04 -0700, Jeff Johnson wrote: > Fix the 'make W=1' warning: > WARNING: modpost: missing MODULE_DESCRIPTION() in fs/sysv/sysv.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: sysv: add MODULE_DESCRIPTION() https://git.kernel.org/vfs/vfs/c/9a38bf0a79b3
diff --git a/fs/sysv/super.c b/fs/sysv/super.c index 3365a30dc1e0..5c0d07ddbda2 100644 --- a/fs/sysv/super.c +++ b/fs/sysv/super.c @@ -591,4 +591,5 @@ static void __exit exit_sysv_fs(void) module_init(init_sysv_fs) module_exit(exit_sysv_fs) +MODULE_DESCRIPTION("SystemV Filesystem"); MODULE_LICENSE("GPL");
Fix the 'make W=1' warning: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/sysv/sysv.o Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> --- fs/sysv/super.c | 1 + 1 file changed, 1 insertion(+) --- base-commit: 07506d1011521a4a0deec1c69721c7405c40049b change-id: 20240524-md-fs-sysv-9495e9e626dd