]> Git Repo - linux.git/commitdiff
regulator: missing index in PTR_ERR() in isl6271a_probe()
authorroel kluin <[email protected]>
Fri, 31 Dec 2010 15:26:47 +0000 (16:26 +0100)
committerLiam Girdwood <[email protected]>
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 <[email protected]>
Acked-by: Mark Brown <[email protected]>
Signed-off-by: Liam Girdwood <[email protected]>
drivers/regulator/isl6271a-regulator.c

index b5639e82fcc7dcaab76210dc78280579177feab2..e4b3592e81767856cdadd4543a6e25bb001d695d 100644 (file)
@@ -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;
                }
        }
This page took 0.056992 seconds and 4 git commands to generate.