diff options
Diffstat (limited to 'drivers/mmc/host/mmci.c')
-rw-r--r-- | drivers/mmc/host/mmci.c | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/drivers/mmc/host/mmci.c b/drivers/mmc/host/mmci.c index f2e02d7d9f3d..87b4fc6c98c2 100644 --- a/drivers/mmc/host/mmci.c +++ b/drivers/mmc/host/mmci.c | |||
@@ -523,19 +523,27 @@ static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) | |||
523 | struct mmci_host *host = mmc_priv(mmc); | 523 | struct mmci_host *host = mmc_priv(mmc); |
524 | u32 pwr = 0; | 524 | u32 pwr = 0; |
525 | unsigned long flags; | 525 | unsigned long flags; |
526 | int ret; | ||
526 | 527 | ||
527 | switch (ios->power_mode) { | 528 | switch (ios->power_mode) { |
528 | case MMC_POWER_OFF: | 529 | case MMC_POWER_OFF: |
529 | if(host->vcc && | 530 | if (host->vcc) |
530 | regulator_is_enabled(host->vcc)) | 531 | ret = mmc_regulator_set_ocr(mmc, host->vcc, 0); |
531 | regulator_disable(host->vcc); | ||
532 | break; | 532 | break; |
533 | case MMC_POWER_UP: | 533 | case MMC_POWER_UP: |
534 | #ifdef CONFIG_REGULATOR | 534 | if (host->vcc) { |
535 | if (host->vcc) | 535 | ret = mmc_regulator_set_ocr(mmc, host->vcc, ios->vdd); |
536 | /* This implicitly enables the regulator */ | 536 | if (ret) { |
537 | mmc_regulator_set_ocr(host->vcc, ios->vdd); | 537 | dev_err(mmc_dev(mmc), "unable to set OCR\n"); |
538 | #endif | 538 | /* |
539 | * The .set_ios() function in the mmc_host_ops | ||
540 | * struct return void, and failing to set the | ||
541 | * power should be rare so we print an error | ||
542 | * and return here. | ||
543 | */ | ||
544 | return; | ||
545 | } | ||
546 | } | ||
539 | if (host->plat->vdd_handler) | 547 | if (host->plat->vdd_handler) |
540 | pwr |= host->plat->vdd_handler(mmc_dev(mmc), ios->vdd, | 548 | pwr |= host->plat->vdd_handler(mmc_dev(mmc), ios->vdd, |
541 | ios->power_mode); | 549 | ios->power_mode); |
@@ -734,8 +742,7 @@ static int __devinit mmci_probe(struct amba_device *dev, struct amba_id *id) | |||
734 | /* | 742 | /* |
735 | * We can do SGIO | 743 | * We can do SGIO |
736 | */ | 744 | */ |
737 | mmc->max_hw_segs = 16; | 745 | mmc->max_segs = NR_SG; |
738 | mmc->max_phys_segs = NR_SG; | ||
739 | 746 | ||
740 | /* | 747 | /* |
741 | * Since only a certain number of bits are valid in the data length | 748 | * Since only a certain number of bits are valid in the data length |
@@ -870,8 +877,8 @@ static int __devexit mmci_remove(struct amba_device *dev) | |||
870 | clk_disable(host->clk); | 877 | clk_disable(host->clk); |
871 | clk_put(host->clk); | 878 | clk_put(host->clk); |
872 | 879 | ||
873 | if (regulator_is_enabled(host->vcc)) | 880 | if (host->vcc) |
874 | regulator_disable(host->vcc); | 881 | mmc_regulator_set_ocr(mmc, host->vcc, 0); |
875 | regulator_put(host->vcc); | 882 | regulator_put(host->vcc); |
876 | 883 | ||
877 | mmc_free_host(mmc); | 884 | mmc_free_host(mmc); |