mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 03:44:45 +01:00
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:
parent
9517b82d8d
commit
4cda40dce9
1 changed files with 2 additions and 2 deletions
|
|
@ -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) {};
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue