Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 56380
b: refs/heads/master
c: 6ba736a
h: refs/heads/master
v: v3
  • Loading branch information
Pierre Ossman committed May 14, 2007
1 parent 4781aea commit 52ff186
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c0f3b6c777af071063984fdbc4efb6c904f665f4
refs/heads/master: 6ba736a10e4ae63b38ccfee9f22b3263a6e5d050
9 changes: 9 additions & 0 deletions trunk/drivers/mmc/host/sdhci.c
Original file line number Diff line number Diff line change
Expand Up @@ -963,6 +963,15 @@ static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
sdhci_transfer_pio(host);

/*
* We currently don't do anything fancy with DMA
* boundaries, but as we can't disable the feature
* we need to at least restart the transfer.
*/
if (intmask & SDHCI_INT_DMA_END)
writel(readl(host->ioaddr + SDHCI_DMA_ADDRESS),
host->ioaddr + SDHCI_DMA_ADDRESS);

if (intmask & SDHCI_INT_DATA_END)
sdhci_finish_data(host);
}
Expand Down

0 comments on commit 52ff186

Please sign in to comment.