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>
This commit is contained in:
Родитель
923430cfee
Коммит
fa63bd4aa5
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче