diff options
author | Stefan Agner <stefan.agner@toradex.com> | 2013-12-02 10:51:50 +0100 |
---|---|---|
committer | Stefan Agner <stefan.agner@toradex.com> | 2013-12-02 10:51:50 +0100 |
commit | 498b2cf3874ff5a5ac77713c4e16af87bf979450 (patch) | |
tree | e36fca20209615de040675ea5ceaf994adaf6b5c | |
parent | 6f250fa224375b4fa858fda890b7cd0136173b7c (diff) |
regulator: tps6586x: fixed voltage table for TPS658643
The voltage table for the SM2 regulator on TPS658643 was wrong. However,
since the requested voltage of 1.8V was at the right place, the system
worked fine nonetheless.
-rw-r--r-- | drivers/regulator/tps6586x-regulator.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/regulator/tps6586x-regulator.c b/drivers/regulator/tps6586x-regulator.c index 43a3a11db46c..c9cac10c6a3e 100644 --- a/drivers/regulator/tps6586x-regulator.c +++ b/drivers/regulator/tps6586x-regulator.c @@ -238,10 +238,10 @@ static int tps6586x_sm2_voltages[] = { }; static int tps6586x_sm2fortythree_voltages[] = { - 1025, 1225, 1425, 1625, 1050, 1250, 1450, 1650, - 1075, 1275, 1475, 1675, 1100, 1300, 1500, 1700, - 1125, 1325, 1525, 1725, 1150, 1350, 1550, 1750, - 1175, 1375, 1575, 1775, 1200, 1400, 1600, 1800, + 1025, 1050, 1075, 1100, 1125, 1150, 1175, 1200, + 1225, 1250, 1275, 1300, 1325, 1350, 1375, 1400, + 1425, 1450, 1475, 1500, 1525, 1550, 1575, 1600, + 1625, 1650, 1675, 1700, 1725, 1750, 1775, 1800, }; static int tps6586x_dvm_voltages[] = { |