summaryrefslogtreecommitdiff
path: root/drivers/regulator/lp3972.c
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2013-07-01 10:17:09 (GMT)
committerMark Brown <broonie@linaro.org>2013-07-01 10:17:09 (GMT)
commitbc830f352e48d24e5c56c6af62ad41829c96015e (patch)
tree1fdecb3dc615945aec0a47b46544a845e52274bb /drivers/regulator/lp3972.c
parent0a192cc8600bede44a0425402758631d410a7c6f (diff)
parent2af0af67354b7c9b17d28e6ab47a8177afec125d (diff)
downloadlinux-fsl-qoriq-bc830f352e48d24e5c56c6af62ad41829c96015e.tar.xz
Merge remote-tracking branch 'regulator/topic/lp397x' into regulator-next
Diffstat (limited to 'drivers/regulator/lp3972.c')
-rw-r--r--drivers/regulator/lp3972.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/drivers/regulator/lp3972.c b/drivers/regulator/lp3972.c
index 61e4cf9..5730240 100644
--- a/drivers/regulator/lp3972.c
+++ b/drivers/regulator/lp3972.c
@@ -528,7 +528,7 @@ static int lp3972_i2c_probe(struct i2c_client *i2c,
return -ENODEV;
}
- lp3972 = kzalloc(sizeof(struct lp3972), GFP_KERNEL);
+ lp3972 = devm_kzalloc(&i2c->dev, sizeof(struct lp3972), GFP_KERNEL);
if (!lp3972)
return -ENOMEM;
@@ -546,19 +546,15 @@ static int lp3972_i2c_probe(struct i2c_client *i2c,
}
if (ret < 0) {
dev_err(&i2c->dev, "failed to detect device. ret = %d\n", ret);
- goto err_detect;
+ return ret;
}
ret = setup_regulators(lp3972, pdata);
if (ret < 0)
- goto err_detect;
+ return ret;
i2c_set_clientdata(i2c, lp3972);
return 0;
-
-err_detect:
- kfree(lp3972);
- return ret;
}
static int lp3972_i2c_remove(struct i2c_client *i2c)
@@ -569,7 +565,6 @@ static int lp3972_i2c_remove(struct i2c_client *i2c)
for (i = 0; i < lp3972->num_regulators; i++)
regulator_unregister(lp3972->rdev[i]);
kfree(lp3972->rdev);
- kfree(lp3972);
return 0;
}