From: Caleb Sander Mateos Date: Sat, 8 Nov 2025 04:06:13 +0000 (-0700) Subject: block: clean up indentation in blk_rq_map_iter_init() X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4cda40dce95a5b4ec0620a84f322472730d01f7a;p=thirdparty%2Flinux.git 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 Signed-off-by: Jens Axboe --- diff --git a/block/blk-mq-dma.c b/block/blk-mq-dma.c index 94d3461b5bc8e..a7ef258432803 100644 --- a/block/blk-mq-dma.c +++ b/block/blk-mq-dma.c @@ -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) {}; } }