diff options
author | Brian Foster <bfoster@redhat.com> | 2023-09-13 10:14:30 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-22 17:10:13 -0400 |
commit | a9737e0b38352e984fc67d5694b2c207c6b9679f (patch) | |
tree | f76a24197bb1f810b28905e8039cd57ec73488e1 /fs/bcachefs/super.c | |
parent | 6bd68ec266ad71827ef940151067b67b62fb8fed (diff) |
bcachefs: add module description to fix modpost warning
modpost produces the following warning:
WARNING: modpost: missing MODULE_DESCRIPTION() in fs/bcachefs/bcachefs.o
Add a module description for bcachefs.
Signed-off-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/super.c')
-rw-r--r-- | fs/bcachefs/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/bcachefs/super.c b/fs/bcachefs/super.c index a00dc4a4a2c9..94e296397e32 100644 --- a/fs/bcachefs/super.c +++ b/fs/bcachefs/super.c @@ -69,6 +69,7 @@ MODULE_LICENSE("GPL"); MODULE_AUTHOR("Kent Overstreet <kent.overstreet@gmail.com>"); +MODULE_DESCRIPTION("bcachefs filesystem"); #define KTYPE(type) \ static const struct attribute_group type ## _group = { \ |