diff options
author | Charles Keepax <[email protected]> | 2019-10-01 14:20:17 +0100 |
---|---|---|
committer | Mark Brown <[email protected]> | 2019-10-01 17:46:01 +0100 |
commit | f75841aa3b4bf02fcc7941af2d3e00ff74a93bdb (patch) | |
tree | c11edffb370d59eed84f7b23dadc9874a4975b62 | |
parent | f64db548799e0330897c3203680c2ee795ade518 (diff) |
regulator: lochnagar: Add on_off_delay for VDDCORE
The VDDCORE regulator takes a good length of time to discharge down, so
add an on_off_delay to ensure DCVDD is removed before it is powered on
again.
Signed-off-by: Charles Keepax <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | drivers/regulator/lochnagar-regulator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/regulator/lochnagar-regulator.c b/drivers/regulator/lochnagar-regulator.c index ff97cc50f2eb..9b05e03ba830 100644 --- a/drivers/regulator/lochnagar-regulator.c +++ b/drivers/regulator/lochnagar-regulator.c @@ -210,6 +210,7 @@ static const struct regulator_desc lochnagar_regulators[] = { .enable_time = 3000, .ramp_delay = 1000, + .off_on_delay = 15000, .owner = THIS_MODULE, }, |