diff mbox series

fs: cramfs: add MODULE_DESCRIPTION()

Message ID 20240527-md-fs-cramfs-v1-1-fa697441c8c5@quicinc.com (mailing list archive)
State New
Headers show
Series fs: cramfs: add MODULE_DESCRIPTION() | expand

Commit Message

Jeff Johnson May 27, 2024, 5:55 p.m. UTC
Fix the 'make W=1' warning:
WARNING: modpost: missing MODULE_DESCRIPTION() in fs/cramfs/cramfs.o

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
---
 fs/cramfs/inode.c | 1 +
 1 file changed, 1 insertion(+)


---
base-commit: 2bfcfd584ff5ccc8bb7acde19b42570414bf880b
change-id: 20240527-md-fs-cramfs-10e1276a3662

Comments

Nicolas Pitre May 27, 2024, 6:28 p.m. UTC | #1
On Mon, 27 May 2024, Jeff Johnson wrote:

> Fix the 'make W=1' warning:
> WARNING: modpost: missing MODULE_DESCRIPTION() in fs/cramfs/cramfs.o
> 
> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>

Reviewed-by: Nicolas Pitre <nico@fluxnic.net>

> ---
>  fs/cramfs/inode.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/fs/cramfs/inode.c b/fs/cramfs/inode.c
> index 460690ca0174..d818ed1bb07e 100644
> --- a/fs/cramfs/inode.c
> +++ b/fs/cramfs/inode.c
> @@ -1003,4 +1003,5 @@ static void __exit exit_cramfs_fs(void)
>  
>  module_init(init_cramfs_fs)
>  module_exit(exit_cramfs_fs)
> +MODULE_DESCRIPTION("Compressed ROM file system support");
>  MODULE_LICENSE("GPL");
> 
> ---
> base-commit: 2bfcfd584ff5ccc8bb7acde19b42570414bf880b
> change-id: 20240527-md-fs-cramfs-10e1276a3662
> 
>
Christian Brauner May 28, 2024, 11:40 a.m. UTC | #2
On Mon, 27 May 2024 10:55:02 -0700, Jeff Johnson wrote:
> Fix the 'make W=1' warning:
> WARNING: modpost: missing MODULE_DESCRIPTION() in fs/cramfs/cramfs.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: cramfs: add MODULE_DESCRIPTION()
      https://git.kernel.org/vfs/vfs/c/9149a57dd525
diff mbox series

Patch

diff --git a/fs/cramfs/inode.c b/fs/cramfs/inode.c
index 460690ca0174..d818ed1bb07e 100644
--- a/fs/cramfs/inode.c
+++ b/fs/cramfs/inode.c
@@ -1003,4 +1003,5 @@  static void __exit exit_cramfs_fs(void)
 
 module_init(init_cramfs_fs)
 module_exit(exit_cramfs_fs)
+MODULE_DESCRIPTION("Compressed ROM file system support");
 MODULE_LICENSE("GPL");