aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/filesystems
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-10-23 15:10:37 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-10-30 08:37:39 +0100
commit0d519cbf38eed4f895aed197d4b135fa7f60f7c2 (patch)
tree69006636c6434ed4071f606726901a33ce739b2d /Documentation/filesystems
parentLinux 5.10-rc1 (diff)
downloadlinux-dev-0d519cbf38eed4f895aed197d4b135fa7f60f7c2.tar.xz
linux-dev-0d519cbf38eed4f895aed197d4b135fa7f60f7c2.zip
debugfs: remove return value of debugfs_create_devm_seqfile()
No one checks the return value of debugfs_create_devm_seqfile(), as it's not needed, so make the return value void, so that no one tries to do so in the future. Link: https://lore.kernel.org/r/20201023131037.2500765-1-gregkh@linuxfoundation.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation/filesystems')
-rw-r--r--Documentation/filesystems/debugfs.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/filesystems/debugfs.rst b/Documentation/filesystems/debugfs.rst
index 728ab57a611a..0f2292e367e6 100644
--- a/Documentation/filesystems/debugfs.rst
+++ b/Documentation/filesystems/debugfs.rst
@@ -199,7 +199,7 @@ of its elements. Note: Once array is created its size can not be changed.
There is a helper function to create device related seq_file::
- struct dentry *debugfs_create_devm_seqfile(struct device *dev,
+ void debugfs_create_devm_seqfile(struct device *dev,
const char *name,
struct dentry *parent,
int (*read_fn)(struct seq_file *s,