From: John Hubbard Date: Fri, 2 Aug 2019 01:06:58 +0000 (-0700) Subject: ceph: don't return a value from void function X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3e8730fac951bf89b3adbb040445bb688af1fd22;p=linux.git ceph: don't return a value from void function This fixes a build warning to that effect. Fixes: 1a829ff2a6c3 ("ceph: no need to check return value of debugfs_create functions") Signed-off-by: John Hubbard Signed-off-by: Ilya Dryomov --- diff --git a/fs/ceph/debugfs.c b/fs/ceph/debugfs.c index 2eb88ed22993a..facb387c27356 100644 --- a/fs/ceph/debugfs.c +++ b/fs/ceph/debugfs.c @@ -294,7 +294,6 @@ 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)