bloom: kill unused function

Signed-off-by: Jens Axboe <axboe@fb.com>
diff --git a/lib/bloom.c b/lib/bloom.c
index 33d093a..ee4ba0b 100644
--- a/lib/bloom.c
+++ b/lib/bloom.c
@@ -113,11 +113,6 @@
 	return was_set == N_HASHES;
 }
 
-int bloom_check(struct bloom *b, uint32_t *data, unsigned int nwords)
-{
-	return __bloom_check(b, data, nwords, 0);
-}
-
 int bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords)
 {
 	return __bloom_check(b, data, nwords, 1);
diff --git a/lib/bloom.h b/lib/bloom.h
index b3cde95..127ed9b 100644
--- a/lib/bloom.h
+++ b/lib/bloom.h
@@ -7,7 +7,6 @@
 
 struct bloom *bloom_new(uint64_t entries);
 void bloom_free(struct bloom *b);
-int bloom_check(struct bloom *b, uint32_t *data, unsigned int nwords);
 int bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords);
 
 #endif