aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/host/pxamci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/host/pxamci.c b/drivers/mmc/host/pxamci.c
index a98ff98fa567..d97d3864b57f 100644
--- a/drivers/mmc/host/pxamci.c
+++ b/drivers/mmc/host/pxamci.c
@@ -368,14 +368,14 @@ static void pxamci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
368 if (CLOCKRATE / clk > ios->clock) 368 if (CLOCKRATE / clk > ios->clock)
369 clk <<= 1; 369 clk <<= 1;
370 host->clkrt = fls(clk) - 1; 370 host->clkrt = fls(clk) - 1;
371 pxa_set_cken(CKEN12_MMC, 1); 371 pxa_set_cken(CKEN_MMC, 1);
372 372
373 /* 373 /*
374 * we write clkrt on the next command 374 * we write clkrt on the next command
375 */ 375 */
376 } else { 376 } else {
377 pxamci_stop_clock(host); 377 pxamci_stop_clock(host);
378 pxa_set_cken(CKEN12_MMC, 0); 378 pxa_set_cken(CKEN_MMC, 0);
379 } 379 }
380 380
381 if (host->power_mode != ios->power_mode) { 381 if (host->power_mode != ios->power_mode) {