diff options
author | roel kluin <roel.kluin@gmail.com> | 2010-12-31 10:26:47 -0500 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2011-01-12 09:33:06 -0500 |
commit | fa63bd4aa53aecc38956cbdd50f8ff9ed0d6d5ba (patch) | |
tree | e5214c4943a025728e8010695daad1e347ee4f73 /drivers/regulator | |
parent | 923430cfee112c5f8223a313f5ec148a27dfed7f (diff) |
regulator: missing index in PTR_ERR() in isl6271a_probe()
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>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/isl6271a-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/isl6271a-regulator.c b/drivers/regulator/isl6271a-regulator.c index b5639e82fcc7..e4b3592e8176 100644 --- 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, | |||
173 | init_data, pmic); | 173 | init_data, pmic); |
174 | if (IS_ERR(pmic->rdev[i])) { | 174 | if (IS_ERR(pmic->rdev[i])) { |
175 | dev_err(&i2c->dev, "failed to register %s\n", id->name); | 175 | dev_err(&i2c->dev, "failed to register %s\n", id->name); |
176 | err = PTR_ERR(pmic->rdev); | 176 | err = PTR_ERR(pmic->rdev[i]); |
177 | goto error; | 177 | goto error; |
178 | } | 178 | } |
179 | } | 179 | } |