regulator: enable supply regulator only when use count is zero
Supply regulators are disabled only when the last reference count is removed on the child regulator (the use count goes from 1 to 0). This patch changes the behaviour of enable so the supply regulator is enabled only when the use count of the child regulator goes from 0 to 1. Signed-off-by: Bengt Jonsson <bengt.g.jonsson@stericsson.com> Acked-by: Linus Walleij <linus.walleij@stericsson.com> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
This commit is contained in:
committed by
Liam Girdwood
parent
02fa3ec01a
commit
acaf6ffefd
@@ -1273,6 +1273,7 @@ static int _regulator_enable(struct regulator_dev *rdev)
|
|||||||
{
|
{
|
||||||
int ret, delay;
|
int ret, delay;
|
||||||
|
|
||||||
|
if (rdev->use_count == 0) {
|
||||||
/* do we need to enable the supply regulator first */
|
/* do we need to enable the supply regulator first */
|
||||||
if (rdev->supply) {
|
if (rdev->supply) {
|
||||||
mutex_lock(&rdev->supply->mutex);
|
mutex_lock(&rdev->supply->mutex);
|
||||||
@@ -1284,6 +1285,7 @@ static int _regulator_enable(struct regulator_dev *rdev)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* check voltage and requested load before enabling */
|
/* check voltage and requested load before enabling */
|
||||||
if (rdev->constraints &&
|
if (rdev->constraints &&
|
||||||
|
Reference in New Issue
Block a user