Commit 0268abf9 authored by Adrian Hunter's avatar Adrian Hunter Committed by Tony Lindgren

OMAP: mmc_twl4030 nicely disable vmmc_aux

The MMC driver turns the power off before it turns it
on. To avoid regulator warnings, vmmc_aux must only be
disabled if it has previously been enabled.
Signed-off-by: default avatarAdrian Hunter <adrian.hunter@nokia.com>
Acked-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent ed39a47f
...@@ -305,7 +305,7 @@ static int twl_mmc23_set_power(struct device *dev, int slot, int power_on, int v ...@@ -305,7 +305,7 @@ static int twl_mmc23_set_power(struct device *dev, int slot, int power_on, int v
ret = mmc_regulator_set_ocr(c->vcc, 0); ret = mmc_regulator_set_ocr(c->vcc, 0);
} }
} else { } else {
if (c->vcc_aux) if (c->vcc_aux && (ret = regulator_is_enabled(c->vcc_aux)) > 0)
ret = regulator_disable(c->vcc_aux); ret = regulator_disable(c->vcc_aux);
if (ret == 0) if (ret == 0)
ret = mmc_regulator_set_ocr(c->vcc, 0); ret = mmc_regulator_set_ocr(c->vcc, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment