regulator: tps65023: Use devm_regulator_register
devm_* simplifies the code. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
58c6e938c0
commit
9c7c9eae5f
|
@ -277,12 +277,12 @@ static int tps_65023_probe(struct i2c_client *client,
|
||||||
config.regmap = tps->regmap;
|
config.regmap = tps->regmap;
|
||||||
|
|
||||||
/* Register the regulators */
|
/* Register the regulators */
|
||||||
rdev = regulator_register(&tps->desc[i], &config);
|
rdev = devm_regulator_register(&client->dev, &tps->desc[i],
|
||||||
|
&config);
|
||||||
if (IS_ERR(rdev)) {
|
if (IS_ERR(rdev)) {
|
||||||
dev_err(&client->dev, "failed to register %s\n",
|
dev_err(&client->dev, "failed to register %s\n",
|
||||||
id->name);
|
id->name);
|
||||||
error = PTR_ERR(rdev);
|
return PTR_ERR(rdev);
|
||||||
goto fail;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Save regulator for cleanup */
|
/* Save regulator for cleanup */
|
||||||
|
@ -296,21 +296,6 @@ static int tps_65023_probe(struct i2c_client *client,
|
||||||
TPS65023_REG_CTRL2_CORE_ADJ, TPS65023_REG_CTRL2_CORE_ADJ);
|
TPS65023_REG_CTRL2_CORE_ADJ, TPS65023_REG_CTRL2_CORE_ADJ);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
fail:
|
|
||||||
while (--i >= 0)
|
|
||||||
regulator_unregister(tps->rdev[i]);
|
|
||||||
return error;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int tps_65023_remove(struct i2c_client *client)
|
|
||||||
{
|
|
||||||
struct tps_pmic *tps = i2c_get_clientdata(client);
|
|
||||||
int i;
|
|
||||||
|
|
||||||
for (i = 0; i < TPS65023_NUM_REGULATOR; i++)
|
|
||||||
regulator_unregister(tps->rdev[i]);
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct tps_info tps65020_regs[] = {
|
static const struct tps_info tps65020_regs[] = {
|
||||||
|
@ -430,7 +415,6 @@ static struct i2c_driver tps_65023_i2c_driver = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
},
|
},
|
||||||
.probe = tps_65023_probe,
|
.probe = tps_65023_probe,
|
||||||
.remove = tps_65023_remove,
|
|
||||||
.id_table = tps_65023_id,
|
.id_table = tps_65023_id,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue