aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles Keepax <ckeepax@opensource.wolfsonmicro.com>2014-06-02 04:50:40 -0400
committerLee Jones <lee.jones@linaro.org>2014-07-09 09:58:03 -0400
commitdf6b3352d88560459d4a4926b36409334332f2cb (patch)
tree7ec9d09fc46cf9b90ddd92040e3d002c8507a241
parentb804020adadae5ebe82850bd82e29f224d044164 (diff)
mfd: arizona: Disable DCVDD before we destroy the MFD
As DCVDD is probably supplied by a child of the MFD device move its disable to before we destroy the MFD children as the regulator likely won't exist after that. Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r--drivers/mfd/arizona-core.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/mfd/arizona-core.c b/drivers/mfd/arizona-core.c
index 9d71ebccc8b0..9df02502326a 100644
--- a/drivers/mfd/arizona-core.c
+++ b/drivers/mfd/arizona-core.c
@@ -1025,6 +1025,8 @@ int arizona_dev_exit(struct arizona *arizona)
1025{ 1025{
1026 pm_runtime_disable(arizona->dev); 1026 pm_runtime_disable(arizona->dev);
1027 1027
1028 regulator_disable(arizona->dcvdd);
1029
1028 mfd_remove_devices(arizona->dev); 1030 mfd_remove_devices(arizona->dev);
1029 arizona_free_irq(arizona, ARIZONA_IRQ_UNDERCLOCKED, arizona); 1031 arizona_free_irq(arizona, ARIZONA_IRQ_UNDERCLOCKED, arizona);
1030 arizona_free_irq(arizona, ARIZONA_IRQ_OVERCLOCKED, arizona); 1032 arizona_free_irq(arizona, ARIZONA_IRQ_OVERCLOCKED, arizona);
@@ -1032,7 +1034,7 @@ int arizona_dev_exit(struct arizona *arizona)
1032 arizona_irq_exit(arizona); 1034 arizona_irq_exit(arizona);
1033 if (arizona->pdata.reset) 1035 if (arizona->pdata.reset)
1034 gpio_set_value_cansleep(arizona->pdata.reset, 0); 1036 gpio_set_value_cansleep(arizona->pdata.reset, 0);
1035 regulator_disable(arizona->dcvdd); 1037
1036 regulator_bulk_disable(ARRAY_SIZE(arizona->core_supplies), 1038 regulator_bulk_disable(ARRAY_SIZE(arizona->core_supplies),
1037 arizona->core_supplies); 1039 arizona->core_supplies);
1038 return 0; 1040 return 0;