bcache: fix sparse non static symbol warning

Fixes the following sparse warning:

drivers/md/bcache/btree.c:2220:5: warning:
 symbol 'btree_insert_fn' was not declared. Should it be static?

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Kent Overstreet <kmo@daterainc.com>
This commit is contained in:
Wei Yongjun 2013-11-28 10:31:35 +08:00 committed by Kent Overstreet
parent c86949486d
commit 08239ca2a0
1 changed files with 1 additions and 1 deletions

View File

@ -2217,7 +2217,7 @@ struct btree_insert_op {
struct bkey *replace_key;
};
int btree_insert_fn(struct btree_op *b_op, struct btree *b)
static int btree_insert_fn(struct btree_op *b_op, struct btree *b)
{
struct btree_insert_op *op = container_of(b_op,
struct btree_insert_op, op);