Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 29177b89 authored by Kent Overstreet's avatar Kent Overstreet Committed by Jens Axboe
Browse files

bcache: Fix for the build fixes



Commit 82a84eaf7e51ba3da0c36cbc401034a4e943492d left a return 0 in
closure_debug_init(). Whoops.

Signed-off-by: default avatarKent Overstreet <koverstreet@google.com>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 2124469e
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -337,7 +337,6 @@ static const struct file_operations debug_ops = {
void __init closure_debug_init(void)
{
	debug = debugfs_create_file("closures", 0400, NULL, NULL, &debug_ops);
	return 0;
}

#endif