aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/bcache/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/md/bcache/debug.h')
-rw-r--r--drivers/md/bcache/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/md/bcache/debug.h b/drivers/md/bcache/debug.h
index 1c39b5a2489b..0f4b3440512c 100644
--- a/drivers/md/bcache/debug.h
+++ b/drivers/md/bcache/debug.h
@@ -29,12 +29,12 @@ void bch_check_keys(struct btree *, const char *, ...);
29#ifdef CONFIG_BCACHE_DEBUG 29#ifdef CONFIG_BCACHE_DEBUG
30 30
31void bch_btree_verify(struct btree *, struct bset *); 31void bch_btree_verify(struct btree *, struct bset *);
32void bch_data_verify(struct search *); 32void bch_data_verify(struct cached_dev *, struct bio *);
33 33
34#else /* DEBUG */ 34#else /* DEBUG */
35 35
36static inline void bch_btree_verify(struct btree *b, struct bset *i) {} 36static inline void bch_btree_verify(struct btree *b, struct bset *i) {}
37static inline void bch_data_verify(struct search *s) {}; 37static inline void bch_data_verify(struct cached_dev *dc, struct bio *bio) {};
38 38
39#endif 39#endif
40 40