Skip to content

Commit 4cda40d

Browse files
calebsanderaxboe
authored andcommitted
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 <[email protected]> Signed-off-by: Jens Axboe <[email protected]>
1 parent 9517b82 commit 4cda40d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

block/blk-mq-dma.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,15 +142,15 @@ static inline void blk_rq_map_iter_init(struct request *rq,
142142
.bi_size = rq->special_vec.bv_len,
143143
}
144144
};
145-
} else if (bio) {
145+
} else if (bio) {
146146
*iter = (struct blk_map_iter) {
147147
.bio = bio,
148148
.bvecs = bio->bi_io_vec,
149149
.iter = bio->bi_iter,
150150
};
151151
} else {
152152
/* the internal flush request may not have bio attached */
153-
*iter = (struct blk_map_iter) {};
153+
*iter = (struct blk_map_iter) {};
154154
}
155155
}
156156

0 commit comments

Comments
 (0)