projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2124469
)
bcache: Fix for the build fixes
author
Kent Overstreet
<koverstreet@google.com>
Tue, 26 Mar 2013 01:36:39 +0000
(19:36 -0600)
committer
Jens Axboe
<axboe@kernel.dk>
Tue, 26 Mar 2013 01:36:39 +0000
(19:36 -0600)
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>
drivers/md/bcache/closure.c
patch
|
blob
|
history
diff --git
a/drivers/md/bcache/closure.c
b/drivers/md/bcache/closure.c
index f54f7c9981d47f2a3df98a0da952bd3c5abbea5e..bd05a9a8c7cf933e028be5eefbd1cd178681e495 100644
(file)
--- 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