Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -177,7 +177,7 @@ static void pxamci_setup_data(struct pxamci_host *host, struct mmc_data *data)
	if (dalgn)
		DALGN |= (1 << host->dma);
	else
		DALGN &= (1 << host->dma);
		DALGN &= ~(1 << host->dma);
	DDADR(host->dma) = host->sg_dma;
	DCSR(host->dma) = DCSR_RUN;
}