Skip to content

Commit d64b84c

Browse files
committed
sdhci-bcm2708: speed up DMA sync
Experiments show that it doesn't really take that long to sync, so we can reduce the poll interval slightly. Might improve performance a bit.
1 parent e4f6da2 commit d64b84c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/mmc/host/sdhci-bcm2708.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ static void sdhci_bcm2708_dma_complete_irq(struct sdhci_host *host,
907907
while (0 != (sdhci_bcm2708_raw_readl(host, SDHCI_PRESENT_STATE)
908908
& state_mask) && --timeout > 0)
909909
{
910-
udelay(100);
910+
udelay(30);
911911
continue;
912912
}
913913
if (timeout <= 0)

0 commit comments

Comments
 (0)