diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-05-25 01:45:00 +0200 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2024-05-28 11:52:41 +0200 |
commit | de3f3951bb8e955998a01463263989b32ebd75ba (patch) | |
tree | 801c8cfc2deb5d001305d1b1f0468641412d26f8 /fs/efs/inode.c | |
parent | fs: minix: add MODULE_DESCRIPTION() (diff) | |
download | linux-de3f3951bb8e955998a01463263989b32ebd75ba.tar.xz linux-de3f3951bb8e955998a01463263989b32ebd75ba.zip |
fs: efs: add MODULE_DESCRIPTION()
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>
Link: https://lore.kernel.org/r/20240524-md-fs-efs-v1-1-1729726e494f@quicinc.com
Acked-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/efs/inode.c')
-rw-r--r-- | fs/efs/inode.c | 1 |
1 files changed, 1 insertions, 0 deletions
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"); |