Commit 3e8730fa authored by John Hubbard's avatar John Hubbard Committed by Ilya Dryomov

ceph: don't return a value from void function

This fixes a build warning to that effect.

Fixes: 1a829ff2 ("ceph: no need to check return value of debugfs_create functions")
Signed-off-by: default avatarJohn Hubbard <jhubbard@nvidia.com>
Signed-off-by: default avatarIlya Dryomov <idryomov@gmail.com>
parent 249c1df5
...@@ -294,7 +294,6 @@ void ceph_fs_debugfs_init(struct ceph_fs_client *fsc) ...@@ -294,7 +294,6 @@ void ceph_fs_debugfs_init(struct ceph_fs_client *fsc)
void ceph_fs_debugfs_init(struct ceph_fs_client *fsc) void ceph_fs_debugfs_init(struct ceph_fs_client *fsc)
{ {
return 0;
} }
void ceph_fs_debugfs_cleanup(struct ceph_fs_client *fsc) void ceph_fs_debugfs_cleanup(struct ceph_fs_client *fsc)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment