Skip to content
Snippets Groups Projects
Commit 4fe16897 authored by Karl Beldan's avatar Karl Beldan Committed by Pierre Ossman
Browse files

pxamci: trivial fix of DMA alignment register bit clearing

parent c010b2f7
No related branches found
No related tags found
No related merge requests found
...@@ -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;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment