diff options
author | Bart Van Assche <bart.vanassche@sandisk.com> | 2016-06-14 18:03:45 +0300 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-06-14 18:09:17 +0300 |
commit | 1179a5a0851be6753b43601c00602dcef99e68f7 (patch) | |
tree | 353b6201d7d2e07587f21ca26402fcfd2c2aec3c /block | |
parent | aa8d15bfe4ed23b97bf3990e2901844efc6347ec (diff) | |
download | linux-1179a5a0851be6753b43601c00602dcef99e68f7.tar.xz |
block/bio-integrity.c: Add #include "blk.h"
This patch avoids that building with W=1 C=2 triggers the following
warning:
block/bio-integrity.c:35:6: warning: symbol 'blk_flush_integrity' was not declared. Should it be static?
Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/bio-integrity.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/block/bio-integrity.c b/block/bio-integrity.c index 711e4d8de6fa..15d37b1cd500 100644 --- a/block/bio-integrity.c +++ b/block/bio-integrity.c @@ -26,6 +26,7 @@ #include <linux/bio.h> #include <linux/workqueue.h> #include <linux/slab.h> +#include "blk.h" #define BIP_INLINE_VECS 4 |