Message ID | 20240527-md-fs-hfs-v1-1-4be79ef7e187@quicinc.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | fs: hfs: add MODULE_DESCRIPTION() | expand |
On Mon, 27 May 2024 10:53:08 -0700, Jeff Johnson wrote: > Fix the 'make W=1' warning: > WARNING: modpost: missing MODULE_DESCRIPTION() in fs/hfs/hfs.o > > Applied to the v6.10-rc1 branch of the vfs/vfs.git tree. Patches in the v6.10-rc1 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: v6.10-rc1 [1/1] fs: hfs: add MODULE_DESCRIPTION() https://git.kernel.org/vfs/vfs/c/7c50209f1e6a
diff --git a/fs/hfs/super.c b/fs/hfs/super.c index 6764afa98a6f..eeac99765f0d 100644 --- a/fs/hfs/super.c +++ b/fs/hfs/super.c @@ -28,6 +28,7 @@ static struct kmem_cache *hfs_inode_cachep; +MODULE_DESCRIPTION("Apple Macintosh file system support"); MODULE_LICENSE("GPL"); static int hfs_sync_fs(struct super_block *sb, int wait)
Fix the 'make W=1' warning: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/hfs/hfs.o Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> --- fs/hfs/super.c | 1 + 1 file changed, 1 insertion(+) --- base-commit: 2bfcfd584ff5ccc8bb7acde19b42570414bf880b change-id: 20240527-md-fs-hfs-8547370e68aa