Reference count is maintained correctly when enabling, but the very
first disable will ignore the reference count and disable the regulator
unconditionally. Make disable with an enable_count > 1 a no-op to fix
this.

Reported-by: Enrico Jorns <[email protected]>
Signed-off-by: Ahmad Fatoum <[email protected]>
---
 drivers/regulator/core.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index d1d3a36dfc8d..ac4141c1cdbf 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -71,6 +71,11 @@ static int regulator_disable_internal(struct 
regulator_internal *ri)
        if (!ri->enable_count)
                return -EINVAL;
 
+       if (ri->enable_count > 1) {
+               ri->enable_count--;
+               return 0;
+       }
+
        if (!ri->rdev->desc->ops->disable)
                return -ENOSYS;
 
-- 
2.30.2


_______________________________________________
barebox mailing list
[email protected]
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to