block: clean up indentation in blk_rq_map_iter_init()

blk_rq_map_iter_init() has one line with 7 spaces of indentation and
another that mixes 1 tab and 8 spaces. Convert both to tabs.

Signed-off-by: Caleb Sander Mateos <csander@purestorage.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
Caleb Sander Mateos 2025-11-07 21:06:13 -07:00 committed by Jens Axboe
parent 9517b82d8d
commit 4cda40dce9

View file

@ -142,7 +142,7 @@ static inline void blk_rq_map_iter_init(struct request *rq,
.bi_size = rq->special_vec.bv_len,
}
};
} else if (bio) {
} else if (bio) {
*iter = (struct blk_map_iter) {
.bio = bio,
.bvecs = bio->bi_io_vec,
@ -150,7 +150,7 @@ static inline void blk_rq_map_iter_init(struct request *rq,
};
} else {
/* the internal flush request may not have bio attached */
*iter = (struct blk_map_iter) {};
*iter = (struct blk_map_iter) {};
}
}