1
0
Fork 0

mmc: msm_sdcc: remove needless cache flush after dma_unmap_sg()

dma_unmap_sg() already flushes the cache, I don't get what this
code is doing here.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Chris Ball <cjb@laptop.org>
hifive-unleashed-5.1
Linus Walleij 2011-02-16 23:28:53 +01:00 committed by Chris Ball
parent f5e0cec449
commit dffc55adfa
1 changed files with 0 additions and 8 deletions

View File

@ -266,14 +266,6 @@ msmsdcc_dma_complete_tlet(unsigned long data)
dma_unmap_sg(mmc_dev(host->mmc), host->dma.sg, host->dma.num_ents,
host->dma.dir);
if (host->curr.user_pages) {
struct scatterlist *sg = host->dma.sg;
int i;
for (i = 0; i < host->dma.num_ents; i++)
flush_dcache_page(sg_page(sg++));
}
host->dma.sg = NULL;
host->dma.busy = 0;