regulator: rk801: Fix ramp_delay value error

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Change-Id: Id35502968d0c3bf2b9a15b1008c2bc47e3ba8bcb
This commit is contained in:
Joseph Chen
2025-01-15 15:53:26 +08:00
committed by Tao Huang
parent 9f8868d7b3
commit c790e2f91a

View File

@@ -341,7 +341,7 @@ static const struct regulator_desc rk801_reg[] = {
.enable_mask = ENABLE_MASK(RK801_ID_DCDC1),
.enable_val = ENABLE_VAL(RK801_ID_DCDC1),
.disable_val = DISABLE_VAL(RK801_ID_DCDC1),
.ramp_delay = 1,
.ramp_delay = 1000,
.of_map_mode = rk801_regulator_of_map_mode,
.enable_time = 400,
.owner = THIS_MODULE,
@@ -362,7 +362,7 @@ static const struct regulator_desc rk801_reg[] = {
.enable_mask = ENABLE_MASK(RK801_ID_DCDC2),
.enable_val = ENABLE_VAL(RK801_ID_DCDC2),
.disable_val = DISABLE_VAL(RK801_ID_DCDC2),
.ramp_delay = 1,
.ramp_delay = 1000,
.of_map_mode = rk801_regulator_of_map_mode,
.enable_time = 400,
.owner = THIS_MODULE,
@@ -399,7 +399,7 @@ static const struct regulator_desc rk801_reg[] = {
.enable_mask = ENABLE_MASK(RK801_ID_DCDC4),
.enable_val = ENABLE_VAL(RK801_ID_DCDC4),
.disable_val = DISABLE_VAL(RK801_ID_DCDC4),
.ramp_delay = 1,
.ramp_delay = 1000,
.of_map_mode = rk801_regulator_of_map_mode,
.enable_time = 400,
.owner = THIS_MODULE,