Message ID | 1408342625-23720-1-git-send-email-yunpeng.gao@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c index 7dc0c85..7bcb797 100644 --- a/drivers/mmc/core/core.c +++ b/drivers/mmc/core/core.c @@ -1556,7 +1556,7 @@ void mmc_power_up(struct mmc_host *host, u32 ocr) * This delay should be sufficient to allow the power supply * to reach the minimum voltage. */ - mmc_delay(10); + usleep_range(10000, 12000); host->ios.clock = host->f_init; @@ -1567,7 +1567,7 @@ void mmc_power_up(struct mmc_host *host, u32 ocr) * This delay must be at least 74 clock sizes, or 1 ms, or the * time required to reach a stable voltage. */ - mmc_delay(10); + usleep_range(5000, 6000); mmc_host_clk_release(host); }