diff options
author | Lokesh Vutla | 2019-01-11 15:15:51 +0530 |
---|---|---|
committer | Simon Glass | 2019-02-09 12:50:22 -0700 |
commit | cc4a224af226b2ea818d32af26742aaad8a3983e (patch) | |
tree | 2cb0c9c521146746ee924e14f83a2f8a3e318be3 /include/power | |
parent | f93fab312615ce0bc9aac33f9dcd876a3fed1290 (diff) |
power: regulator: Introduce regulator_set_enable_if_allowed api
regulator_set_enable() api throws an error in the following three cases:
- when requested to disable an always-on regulator
- when set_enable() ops not provided by regulator driver
- when enabling is actually failed.(Error returned by the regulator driver)
Sometimes consumer drivers doesn't want to track the first two scenarios
and just need to worry about the case where enabling is actually failed.
But it is also a good practice to have an error value returned in the
first two cases.
So introduce an api regulator_set_enable_if_allowed() which ignores the
first two error cases and returns an error as given by regulator driver.
Consumer drivers can use this api need not worry about the first two
error conditions.
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/power')
-rw-r--r-- | include/power/regulator.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/power/regulator.h b/include/power/regulator.h index 5318ab3acec..314160a894b 100644 --- a/include/power/regulator.h +++ b/include/power/regulator.h @@ -304,6 +304,17 @@ int regulator_get_enable(struct udevice *dev); int regulator_set_enable(struct udevice *dev, bool enable); /** + * regulator_set_enable_if_allowed: set regulator enable state if allowed by + * regulator + * + * @dev - pointer to the regulator device + * @enable - set true or false + * @return - 0 on success or if enabling is not supported + * -errno val if fails. + */ +int regulator_set_enable_if_allowed(struct udevice *dev, bool enable); + +/** * regulator_get_mode: get active operation mode id of a given regulator * * @dev - pointer to the regulator device |