|
@@ -625,7 +625,7 @@ static int mmc_sdio_suspend(struct mmc_host *host)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if (!err && host->pm_flags & MMC_PM_KEEP_POWER) {
|
|
|
+ if (!err && mmc_card_keep_power(host)) {
|
|
|
mmc_claim_host(host);
|
|
|
sdio_disable_wide(host->card);
|
|
|
mmc_release_host(host);
|
|
@@ -645,10 +645,10 @@ static int mmc_sdio_resume(struct mmc_host *host)
|
|
|
mmc_claim_host(host);
|
|
|
|
|
|
/* No need to reinitialize powered-resumed nonremovable cards */
|
|
|
- if (mmc_card_is_removable(host) || !mmc_card_is_powered_resumed(host))
|
|
|
+ if (mmc_card_is_removable(host) || !mmc_card_keep_power(host))
|
|
|
err = mmc_sdio_init_card(host, host->ocr, host->card,
|
|
|
- (host->pm_flags & MMC_PM_KEEP_POWER));
|
|
|
- else if (mmc_card_is_powered_resumed(host)) {
|
|
|
+ mmc_card_keep_power(host));
|
|
|
+ else if (mmc_card_keep_power(host)) {
|
|
|
/* We may have switched to 1-bit mode during suspend */
|
|
|
err = sdio_enable_4bit_bus(host->card);
|
|
|
if (err > 0) {
|
|
@@ -691,7 +691,7 @@ static int mmc_sdio_power_restore(struct mmc_host *host)
|
|
|
|
|
|
mmc_claim_host(host);
|
|
|
ret = mmc_sdio_init_card(host, host->ocr, host->card,
|
|
|
- (host->pm_flags & MMC_PM_KEEP_POWER));
|
|
|
+ mmc_card_keep_power(host));
|
|
|
if (!ret && host->sdio_irqs)
|
|
|
mmc_signal_sdio_irq(host);
|
|
|
mmc_release_host(host);
|