aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/at91_mci.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mmc/host/at91_mci.c')
-rw-r--r--drivers/mmc/host/at91_mci.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/mmc/host/at91_mci.c b/drivers/mmc/host/at91_mci.c
index 63924e0c7ea9..4e1b2e6288da 100644
--- a/drivers/mmc/host/at91_mci.c
+++ b/drivers/mmc/host/at91_mci.c
@@ -227,11 +227,13 @@ static inline void at91_mci_sg_to_dma(struct at91mci_host *host, struct mmc_data
227 for (index = 0; index < (amount / 4); index++) 227 for (index = 0; index < (amount / 4); index++)
228 *dmabuf++ = swab32(sgbuffer[index]); 228 *dmabuf++ = swab32(sgbuffer[index]);
229 } else { 229 } else {
230 memcpy(dmabuf, sgbuffer, amount); 230 char *tmpv = (char *)dmabuf;
231 dmabuf += amount; 231 memcpy(tmpv, sgbuffer, amount);
232 tmpv += amount;
233 dmabuf = (unsigned *)tmpv;
232 } 234 }
233 235
234 kunmap_atomic(sgbuffer, KM_BIO_SRC_IRQ); 236 kunmap_atomic(((void *)sgbuffer) - sg->offset, KM_BIO_SRC_IRQ);
235 237
236 if (size == 0) 238 if (size == 0)
237 break; 239 break;