aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Ward <Adam.Ward.opensource@diasemi.com>2022-02-22 00:27:42 +0000
committerMark Brown <broonie@kernel.org>2022-02-22 11:56:26 +0000
commitf0fdfc04fd974cea23351b830fcac0822ea19a51 (patch)
tree55e33d9d7fdaff229f1923117db898edb48b27bd
parentregulator: core: fix false positive in regulator_late_cleanup() (diff)
downloadlinux-dev-f0fdfc04fd974cea23351b830fcac0822ea19a51.tar.xz
linux-dev-f0fdfc04fd974cea23351b830fcac0822ea19a51.zip
regulator: da9121: Fix DA914x current values
Update DA9141/2 ranges to correct errors Signed-off-by: Adam Ward <Adam.Ward.opensource@diasemi.com> Link: https://lore.kernel.org/r/cd5732c5061ce49dcfbcebb306d12ba1664b4ea6.1645489455.git.Adam.Ward.opensource@diasemi.com Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--drivers/regulator/da9121-regulator.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/regulator/da9121-regulator.c b/drivers/regulator/da9121-regulator.c
index 6f21223a488e..39d77726970c 100644
--- a/drivers/regulator/da9121-regulator.c
+++ b/drivers/regulator/da9121-regulator.c
@@ -87,16 +87,16 @@ static struct da9121_range da9121_3A_1phase_current = {
};
static struct da9121_range da914x_40A_4phase_current = {
- .val_min = 14000000,
- .val_max = 80000000,
- .val_stp = 2000000,
+ .val_min = 26000000,
+ .val_max = 78000000,
+ .val_stp = 4000000,
.reg_min = 1,
.reg_max = 14,
};
static struct da9121_range da914x_20A_2phase_current = {
- .val_min = 7000000,
- .val_max = 40000000,
+ .val_min = 13000000,
+ .val_max = 39000000,
.val_stp = 2000000,
.reg_min = 1,
.reg_max = 14,