From 4cda40dce95a5b4ec0620a84f322472730d01f7a Mon Sep 17 00:00:00 2001 From: Caleb Sander Mateos Date: Fri, 7 Nov 2025 21:06:13 -0700 Subject: [PATCH] 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 --- block/blk-mq-dma.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {}; } } -- 2.47.3