diff options
author | Adam Ward <Adam.Ward.opensource@diasemi.com> | 2022-02-22 00:27:42 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-02-22 11:56:26 +0000 |
commit | f0fdfc04fd974cea23351b830fcac0822ea19a51 (patch) | |
tree | 55e33d9d7fdaff229f1923117db898edb48b27bd /drivers/regulator | |
parent | 4e2a354e3775870ca823f1fb29bbbffbe11059a6 (diff) | |
download | linux-f0fdfc04fd974cea23351b830fcac0822ea19a51.tar.bz2 |
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>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/da9121-regulator.c | 10 |
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, |