Browse Source

mmc: mxcmmc: add missing dma_async_issue_pending

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
Sascha Hauer 13 years ago
parent
commit
439aa0efd7
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/mmc/host/mxcmmc.c

+ 1 - 0
drivers/mmc/host/mxcmmc.c

@@ -267,6 +267,7 @@ static int mxcmci_setup_data(struct mxcmci_host *host, struct mmc_data *data)
 	wmb();
 
 	dmaengine_submit(host->desc);
+	dma_async_issue_pending(host->dma);
 
 	return 0;
 }