diff options
Diffstat (limited to 'drivers/md/bcache/debug.h')
-rw-r--r-- | drivers/md/bcache/debug.h | 4 |
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 | ||
31 | void bch_btree_verify(struct btree *, struct bset *); | 31 | void bch_btree_verify(struct btree *, struct bset *); |
32 | void bch_data_verify(struct search *); | 32 | void bch_data_verify(struct cached_dev *, struct bio *); |
33 | 33 | ||
34 | #else /* DEBUG */ | 34 | #else /* DEBUG */ |
35 | 35 | ||
36 | static inline void bch_btree_verify(struct btree *b, struct bset *i) {} | 36 | static inline void bch_btree_verify(struct btree *b, struct bset *i) {} |
37 | static inline void bch_data_verify(struct search *s) {}; | 37 | static inline void bch_data_verify(struct cached_dev *dc, struct bio *bio) {}; |
38 | 38 | ||
39 | #endif | 39 | #endif |
40 | 40 | ||