projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe8f706
)
mmc: sdhci: fix cache flush
author
Lei Wen
<leiwen@marvell.com>
Sat, 8 Oct 2011 04:14:54 +0000
(
04:14
+0000)
committer
Andy Fleming
<afleming@freescale.com>
Thu, 3 Nov 2011 07:14:59 +0000
(
02:14
-0500)
Only flush the memory range needed.
Signed-off-by: Lei Wen <leiwen@marvell.com>
drivers/mmc/sdhci.c
patch
|
blob
|
history
diff --git
a/drivers/mmc/sdhci.c
b/drivers/mmc/sdhci.c
index
9ebd33d
..
4a92453
100644
(file)
--- 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 {