regulator: da9121: Prevent current limit change when enabled
authorAdam Ward <Adam.Ward.opensource@diasemi.com>
Mon, 29 Nov 2021 22:10:12 +0000 (22:10 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Jan 2022 10:04:32 +0000 (11:04 +0100)
[ Upstream commit 24f0853228f3b98f1ef08d5824376c69bb8124d2 ]

Prevent changing current limit when enabled as a precaution against
possibile instability due to tight integration with switching cycle

Signed-off-by: Adam Ward <Adam.Ward.opensource@diasemi.com>
Link: https://lore.kernel.org/r/52ee682476004a1736c1e0293358987319c1c415.1638223185.git.Adam.Ward.opensource@diasemi.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/regulator/da9121-regulator.c

index e66925090258021f75ebd1c994efccaa492f3282..0a4fd449c27d1468cd0d8f3a201604ec3b56a6b2 100644 (file)
@@ -253,6 +253,11 @@ static int da9121_set_current_limit(struct regulator_dev *rdev,
                goto error;
        }
 
+       if (rdev->desc->ops->is_enabled(rdev)) {
+               ret = -EBUSY;
+               goto error;
+       }
+
        ret = da9121_ceiling_selector(rdev, min_ua, max_ua, &sel);
        if (ret < 0)
                goto error;