diff options
author | Axel Lin <axel.lin@ingics.com> | 2013-04-12 03:33:25 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-04-12 08:29:33 -0400 |
commit | e4fc9d6d9fea5a1b05dcf5b60984bd6a19cc73d6 (patch) | |
tree | edba335ac402aebe51ae6d5fd08b71a58cfb2a5d | |
parent | 42e8c811bab682121cb57d58e9a37d8cb38e51ca (diff) |
regulator: ab8500: Fix voltage_mask for AB8505_LDO_AUDIO
The voltage_mask and voltage_shift settings of AB8505_LDO_AUDIO are not matched.
It looks like a typo in the voltage_mask settings.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Bengt Jonsson <bengt.g.jonsson@stericsson.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r-- | drivers/regulator/ab8500.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/ab8500.c b/drivers/regulator/ab8500.c index ea182d3c23e6..b81ff04749c3 100644 --- a/drivers/regulator/ab8500.c +++ b/drivers/regulator/ab8500.c | |||
@@ -1130,7 +1130,7 @@ static struct ab8500_regulator_info | |||
1130 | .update_val = 0x02, | 1130 | .update_val = 0x02, |
1131 | .voltage_bank = 0x01, | 1131 | .voltage_bank = 0x01, |
1132 | .voltage_reg = 0x57, | 1132 | .voltage_reg = 0x57, |
1133 | .voltage_mask = 0x7, | 1133 | .voltage_mask = 0x70, |
1134 | .voltage_shift = 4, | 1134 | .voltage_shift = 4, |
1135 | }, | 1135 | }, |
1136 | [AB8505_LDO_ANAMIC1] = { | 1136 | [AB8505_LDO_ANAMIC1] = { |