projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6dc4efc
)
regulator: Fix off-by-one value range checking for mc13xxx_regulator_get_voltage
author
Axel Lin
<axel.lin@gmail.com>
Wed, 18 May 2011 12:56:45 +0000
(20:56 +0800)
committer
Liam Girdwood
<lrg@slimlogic.co.uk>
Fri, 27 May 2011 09:49:10 +0000
(10:49 +0100)
We use val as array index,
thus the valid value rangae for val should be 0 .. n_voltages-1.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
drivers/regulator/mc13xxx-regulator-core.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/regulator/mc13xxx-regulator-core.c
b/drivers/regulator/mc13xxx-regulator-core.c
index 2bb5de1f2421283013e512ab6e643f4b9f05f38a..bc27ab1363784db2788dc6e158a6c68f63b9362c 100644
(file)
--- a/
drivers/regulator/mc13xxx-regulator-core.c
+++ b/
drivers/regulator/mc13xxx-regulator-core.c
@@
-174,7
+174,7
@@
static int mc13xxx_regulator_get_voltage(struct regulator_dev *rdev)
dev_dbg(rdev_get_dev(rdev), "%s id: %d val: %d\n", __func__, id, val);
- BUG_ON(val > mc13xxx_regulators[id].desc.n_voltages);
+ BUG_ON(val >
=
mc13xxx_regulators[id].desc.n_voltages);
return mc13xxx_regulators[id].voltages[val];
}