Browse Source

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>
Kent Overstreet 12 years ago
parent
commit
29177b8966
1 changed files with 0 additions and 1 deletions
  1. 0 1
      drivers/md/bcache/closure.c

+ 0 - 1
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