diff options
author | Ulf Hansson <ulf.hansson@linaro.org> | 2013-09-12 16:36:53 +0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2013-10-31 04:26:25 +0400 |
commit | 4a065193c46a16f1ddf20622c7011c8f327e0478 (patch) | |
tree | 24636463147a37372ef5ebdc01aa7b32093b8c66 /drivers/mmc/core/mmc.c | |
parent | 878e200bbb1fbde9f21582decab95b178e5a3b83 (diff) | |
download | linux-4a065193c46a16f1ddf20622c7011c8f327e0478.tar.xz |
mmc: core: Let mmc_power_up|cycle take ocr as parameter
As a step to fixup the setup of the negotiated ocr mask, we need the
mmc_power_up|cycle functions to take the ocr as a parameter.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/core/mmc.c')
-rw-r--r-- | drivers/mmc/core/mmc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c index 8f0c51686849..75c66f975e24 100644 --- a/drivers/mmc/core/mmc.c +++ b/drivers/mmc/core/mmc.c @@ -1533,7 +1533,7 @@ static int mmc_resume(struct mmc_host *host) BUG_ON(!host->card); mmc_claim_host(host); - mmc_power_up(host); + mmc_power_up(host, host->ocr); mmc_select_voltage(host, host->ocr); err = mmc_init_card(host, host->ocr, host->card); mmc_release_host(host); @@ -1579,7 +1579,7 @@ static int mmc_runtime_resume(struct mmc_host *host) mmc_claim_host(host); - mmc_power_up(host); + mmc_power_up(host, host->ocr); err = mmc_resume(host); if (err) pr_err("%s: error %d doing aggessive resume\n", |