[U-Boot] [PATCH V4 1/5] mmc: sdhci: fix cache flush
Lei Wen
leiwen at marvell.com
Sat Oct 8 16:14:54 CEST 2011
Only flush the memory range needed.
Signed-off-by: Lei Wen <leiwen at marvell.com>
---
Changelog:
V2: no change
V3: no change
V4: no change
drivers/mmc/sdhci.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c
index 9ebd33d..4a92453 100644
--- a/drivers/mmc/sdhci.c
+++ b/drivers/mmc/sdhci.c
@@ -196,7 +196,7 @@ int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
#ifdef CONFIG_MMC_SDMA
- flush_cache(0, ~0);
+ flush_cache(start_addr, trans_bytes);
#endif
sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
do {
--
1.7.0.4
More information about the U-Boot
mailing list