aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2013-07-01 11:17:10 +0100
committerMark Brown <broonie@linaro.org>2013-07-01 11:17:10 +0100
commit60908305fb47058bfd1d621bd65ee4dd90f5f2a9 (patch)
tree060c8b21c3db6be0ff2bd71acc4187e1753c339c /drivers/regulator
parentMerge remote-tracking branch 'regulator/topic/max8973' into regulator-next (diff)
parentregulator: of: Added a property to indicate bypass mode support (diff)
downloadlinux-dev-60908305fb47058bfd1d621bd65ee4dd90f5f2a9.tar.xz
linux-dev-60908305fb47058bfd1d621bd65ee4dd90f5f2a9.zip
Merge remote-tracking branch 'regulator/topic/of' into regulator-next
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/of_regulator.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/regulator/of_regulator.c b/drivers/regulator/of_regulator.c
index 66ca769287ab..f3c8f8f9dc39 100644
--- a/drivers/regulator/of_regulator.c
+++ b/drivers/regulator/of_regulator.c
@@ -61,6 +61,9 @@ static void of_get_regulation_constraints(struct device_node *np,
else /* status change should be possible if not always on. */
constraints->valid_ops_mask |= REGULATOR_CHANGE_STATUS;
+ if (of_property_read_bool(np, "regulator-allow-bypass"))
+ constraints->valid_ops_mask |= REGULATOR_CHANGE_BYPASS;
+
ramp_delay = of_get_property(np, "regulator-ramp-delay", NULL);
if (ramp_delay)
constraints->ramp_delay = be32_to_cpu(*ramp_delay);