mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 12:52:30 +00:00
mmc: sdio: improve mmc_io_rw_extended
Improve mmc_io_rw_extended a little: - using DIV_ROUND_UP achieves the same but is better readable - simplify code by using sg_set_buf - simplify one statement by using -= operator Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
474e25e15f
commit
7aceaf566e
@ -152,7 +152,7 @@ int mmc_io_rw_extended(struct mmc_card *card, int write, unsigned fn,
|
||||
data.flags = write ? MMC_DATA_WRITE : MMC_DATA_READ;
|
||||
|
||||
left_size = data.blksz * data.blocks;
|
||||
nents = (left_size - 1) / seg_size + 1;
|
||||
nents = DIV_ROUND_UP(left_size, seg_size);
|
||||
if (nents > 1) {
|
||||
if (sg_alloc_table(&sgtable, nents, GFP_KERNEL))
|
||||
return -ENOMEM;
|
||||
@ -161,10 +161,9 @@ int mmc_io_rw_extended(struct mmc_card *card, int write, unsigned fn,
|
||||
data.sg_len = nents;
|
||||
|
||||
for_each_sg(data.sg, sg_ptr, data.sg_len, i) {
|
||||
sg_set_page(sg_ptr, virt_to_page(buf + (i * seg_size)),
|
||||
min(seg_size, left_size),
|
||||
offset_in_page(buf + (i * seg_size)));
|
||||
left_size = left_size - seg_size;
|
||||
sg_set_buf(sg_ptr, buf + i * seg_size,
|
||||
min(seg_size, left_size));
|
||||
left_size -= seg_size;
|
||||
}
|
||||
} else {
|
||||
data.sg = &sg;
|
||||
|
Loading…
Reference in New Issue
Block a user