bcache: Fix for the build fixes

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

Signed-off-by: Kent Overstreet <koverstreet@google.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
Kent Overstreet 2013-03-25 19:36:39 -06:00 committed by Jens Axboe
parent 2124469efa
commit 29177b8966

View file

@ -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