Commit 4fe16897 authored by Karl Beldan's avatar Karl Beldan Committed by Pierre Ossman

pxamci: trivial fix of DMA alignment register bit clearing

Signed-off-by: default avatarKarl Beldan <karl.beldan@gmail.com>
Acked-by: default avatarEric Miao <eric.miao@marvell.com>
Signed-off-by: default avatarPierre Ossman <drzeus@drzeus.cx>
parent c010b2f7
...@@ -177,7 +177,7 @@ static void pxamci_setup_data(struct pxamci_host *host, struct mmc_data *data) ...@@ -177,7 +177,7 @@ static void pxamci_setup_data(struct pxamci_host *host, struct mmc_data *data)
if (dalgn) if (dalgn)
DALGN |= (1 << host->dma); DALGN |= (1 << host->dma);
else else
DALGN &= (1 << host->dma); DALGN &= ~(1 << host->dma);
DDADR(host->dma) = host->sg_dma; DDADR(host->dma) = host->sg_dma;
DCSR(host->dma) = DCSR_RUN; DCSR(host->dma) = DCSR_RUN;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment