Message ID | 20240619-md-sparc-fs-openpromfs-v1-1-51c85ce90fa3@quicinc.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | openpromfs: add missing MODULE_DESCRIPTION() macro | expand |
On Wed, 19 Jun 2024 07:38:14 -0700, Jeff Johnson wrote: > With ARCH=sparc, make allmodconfig && make W=1 C=1 reports: > WARNING: modpost: missing MODULE_DESCRIPTION() in fs/openpromfs/openpromfs.o > > Add the missing invocation of the MODULE_DESCRIPTION() macro. > > Applied to the vfs.module.description branch of the vfs/vfs.git tree. Patches in the vfs.module.description 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.module.description [1/1] openpromfs: add missing MODULE_DESCRIPTION() macro https://git.kernel.org/vfs/vfs/c/807221c54db6
diff --git a/fs/openpromfs/inode.c b/fs/openpromfs/inode.c index a7b527ea50d3..26ecda0e4d19 100644 --- a/fs/openpromfs/inode.c +++ b/fs/openpromfs/inode.c @@ -471,4 +471,5 @@ static void __exit exit_openprom_fs(void) module_init(init_openprom_fs) module_exit(exit_openprom_fs) +MODULE_DESCRIPTION("OpenPROM filesystem support"); MODULE_LICENSE("GPL");
With ARCH=sparc, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/openpromfs/openpromfs.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> --- fs/openpromfs/inode.c | 1 + 1 file changed, 1 insertion(+) --- base-commit: 6ba59ff4227927d3a8530fc2973b80e94b54d58f change-id: 20240619-md-sparc-fs-openpromfs-7c061d5af7b2