mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-12 15:24:00 +08:00
regulator: mc13892: Fix voltage unit in test case.
Voltage values should be expressed in microvolts, not in milivolts. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Ranjani Vaidyanathan <ra5478@freescale.com> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
This commit is contained in:
parent
ecb9c4f595
commit
6dc4efc6d5
@ -452,9 +452,9 @@ static int mc13892_sw_regulator_set_voltage(struct regulator_dev *rdev,
|
||||
if (ret)
|
||||
goto err;
|
||||
|
||||
if (value > 1375)
|
||||
if (value > 1375000)
|
||||
hi = 1;
|
||||
else if (value < 1100)
|
||||
else if (value < 1100000)
|
||||
hi = 0;
|
||||
else
|
||||
hi = valread & MC13892_SWITCHERS0_SWxHI;
|
||||
|
Loading…
Reference in New Issue
Block a user