aboutsummaryrefslogtreecommitdiff
path: root/drivers/md/bcache/closure.c
diff options
context:
space:
mode:
authorKent Overstreet <koverstreet@google.com>2013-03-25 19:36:39 -0600
committerJens Axboe <axboe@kernel.dk>2013-03-25 19:36:39 -0600
commit29177b896676496dbefa27bd35f19c64e47cf0d3 (patch)
tree19239bdd1ab3c476a3548e30abf5848aeaf62ea7 /drivers/md/bcache/closure.c
parent2124469efa6079e6c325165fb1926159356b15c3 (diff)
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>
Diffstat (limited to 'drivers/md/bcache/closure.c')
-rw-r--r--drivers/md/bcache/closure.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/md/bcache/closure.c b/drivers/md/bcache/closure.c
index f54f7c9981d..bd05a9a8c7c 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