From: Kent Overstreet Date: Tue, 26 Mar 2013 01:36:39 +0000 (-0600) Subject: bcache: Fix for the build fixes X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=29177b896676496dbefa27bd35f19c64e47cf0d3;p=linux-beck.git bcache: Fix for the build fixes Commit 82a84eaf7e51ba3da0c36cbc401034a4e943492d left a return 0 in closure_debug_init(). Whoops. Signed-off-by: Kent Overstreet Signed-off-by: Jens Axboe --- diff --git a/drivers/md/bcache/closure.c b/drivers/md/bcache/closure.c index f54f7c9981d4..bd05a9a8c7cf 100644 --- a/drivers/md/bcache/closure.c +++ b/drivers/md/bcache/closure.c @@ -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