From: Coly Li Date: Sat, 11 Aug 2018 05:19:50 +0000 (+0800) Subject: bcache: fix indent by replacing blank by tabs X-Git-Tag: v4.19~326^2~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c63ca7871aa3f1777e2af978ea1967b2f5bf0ae2;p=platform%2Fkernel%2Flinux-rpi.git bcache: fix indent by replacing blank by tabs bch_btree_insert_check_key() has unaligned indent, or indent by blank characters. This patch makes the indent aligned and replace blank by tabs. Signed-off-by: Coly Li Reviewed-by: Shenghui Wang Signed-off-by: Jens Axboe --- diff --git a/drivers/md/bcache/btree.c b/drivers/md/bcache/btree.c index c2e4174a2e03..e7d4817681f2 100644 --- a/drivers/md/bcache/btree.c +++ b/drivers/md/bcache/btree.c @@ -2231,10 +2231,10 @@ int bch_btree_insert_check_key(struct btree *b, struct btree_op *op, rw_lock(true, b, b->level); if (b->key.ptr[0] != btree_ptr || - b->seq != seq + 1) { + b->seq != seq + 1) { op->lock = b->level; goto out; - } + } } SET_KEY_PTRS(check_key, 1);