From: Kent Overstreet Date: Tue, 26 Mar 2013 01:36:39 +0000 (-0600) Subject: bcache: Fix for the build fixes X-Git-Tag: v3.12-rc1~856^2~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=29177b896676496dbefa27bd35f19c64e47cf0d3;p=kernel%2Fkernel-generic.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 f54f7c9..bd05a9a 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