Message ID | 20240524-md-fs-efs-v1-1-1729726e494f@quicinc.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | fs: efs: add MODULE_DESCRIPTION() | expand |
On Fri, 24 May 2024 16:45:00 -0700, Jeff Johnson wrote: > Fix the 'make W=1' warning: > WARNING: modpost: missing MODULE_DESCRIPTION() in fs/efs/efs.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: efs: add MODULE_DESCRIPTION() https://git.kernel.org/vfs/vfs/c/e14b2adc9e5e
diff --git a/fs/efs/inode.c b/fs/efs/inode.c index 7844ab24b813..462619e59766 100644 --- a/fs/efs/inode.c +++ b/fs/efs/inode.c @@ -311,4 +311,5 @@ efs_block_t efs_map_block(struct inode *inode, efs_block_t block) { return 0; } +MODULE_DESCRIPTION("Extent File System (efs)"); MODULE_LICENSE("GPL");
Fix the 'make W=1' warning: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/efs/efs.o Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> --- fs/efs/inode.c | 1 + 1 file changed, 1 insertion(+) --- base-commit: 07506d1011521a4a0deec1c69721c7405c40049b change-id: 20240524-md-fs-efs-9be954e4406d