projects
/
platform
/
upstream
/
kernel-adaptation-pc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
923430c
)
regulator: missing index in PTR_ERR() in isl6271a_probe()
author
roel kluin
<roel.kluin@gmail.com>
Fri, 31 Dec 2010 15:26:47 +0000
(16:26 +0100)
committer
Liam Girdwood
<lrg@slimlogic.co.uk>
Wed, 12 Jan 2011 14:33:06 +0000
(14:33 +0000)
The index is missing so the return is wrong.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
drivers/regulator/isl6271a-regulator.c
patch
|
blob
|
history
diff --git
a/drivers/regulator/isl6271a-regulator.c
b/drivers/regulator/isl6271a-regulator.c
index
b5639e8
..
e4b3592
100644
(file)
--- a/
drivers/regulator/isl6271a-regulator.c
+++ b/
drivers/regulator/isl6271a-regulator.c
@@
-173,7
+173,7
@@
static int __devinit isl6271a_probe(struct i2c_client *i2c,
init_data, pmic);
if (IS_ERR(pmic->rdev[i])) {
dev_err(&i2c->dev, "failed to register %s\n", id->name);
- err = PTR_ERR(pmic->rdev);
+ err = PTR_ERR(pmic->rdev
[i]
);
goto error;
}
}