projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
508e837
)
regulator: Fix setting selector in tps6524x set_voltage function
author
Axel Lin
<axel.lin@gmail.com>
Thu, 8 Mar 2012 02:02:17 +0000
(10:02 +0800)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 19 Mar 2012 15:57:58 +0000
(08:57 -0700)
commit
f03570cf1709397ebe656608266b44ec772960c2
upstream.
Don't assign the voltage to selector.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/regulator/tps6524x-regulator.c
patch
|
blob
|
history
diff --git
a/drivers/regulator/tps6524x-regulator.c
b/drivers/regulator/tps6524x-regulator.c
index 9166aa0a9df71c582425d89a7d6517bd22f01072..229b6f4bb8b4b1d8a088cbe60dbaa72287925cb8 100644
(file)
--- a/
drivers/regulator/tps6524x-regulator.c
+++ b/
drivers/regulator/tps6524x-regulator.c
@@
-481,7
+481,7
@@
static int set_voltage(struct regulator_dev *rdev, int min_uV, int max_uV,
if (i >= info->n_voltages)
i = info->n_voltages - 1;
- *selector = i
nfo->voltages[i]
;
+ *selector = i;
return write_field(hw, &info->voltage, i);
}