From: Kent Overstreet Date: Wed, 3 Jan 2024 18:44:43 +0000 (-0500) Subject: bcachefs: kill useless return ret X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8a0dda6fd6b7af2a7aa797762148b8ecb8f47a67;p=linux.git bcachefs: kill useless return ret Signed-off-by: Kent Overstreet --- diff --git a/fs/bcachefs/debug.c b/fs/bcachefs/debug.c index de5bfc0d46844..413992b229d0e 100644 --- a/fs/bcachefs/debug.c +++ b/fs/bcachefs/debug.c @@ -930,8 +930,6 @@ void bch2_debug_exit(void) int __init bch2_debug_init(void) { - int ret = 0; - bch_debug = debugfs_create_dir("bcachefs", NULL); - return ret; + return 0; }