diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-09-04 05:37:57 (GMT) |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-09-16 23:28:40 (GMT) |
commit | e453f92eec6d72db0d7fe6bab2e0a710dc6cd927 (patch) | |
tree | 2ee739005cc0b0dfbb86b0f377441ae26ba36540 /drivers | |
parent | 027a27545cc09dfc392d056437c5eb3f260d7e43 (diff) | |
download | linux-fsl-qoriq-e453f92eec6d72db0d7fe6bab2e0a710dc6cd927.tar.xz |
regulator: max8649: 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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/regulator/max8649.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/drivers/regulator/max8649.c b/drivers/regulator/max8649.c index 19c6f08..7f049c9 100644 --- a/drivers/regulator/max8649.c +++ b/drivers/regulator/max8649.c @@ -234,7 +234,8 @@ static int max8649_regulator_probe(struct i2c_client *client, config.driver_data = info; config.regmap = info->regmap; - info->regulator = regulator_register(&dcdc_desc, &config); + info->regulator = devm_regulator_register(&client->dev, &dcdc_desc, + &config); if (IS_ERR(info->regulator)) { dev_err(info->dev, "failed to register regulator %s\n", dcdc_desc.name); @@ -244,16 +245,6 @@ static int max8649_regulator_probe(struct i2c_client *client, return 0; } -static int max8649_regulator_remove(struct i2c_client *client) -{ - struct max8649_regulator_info *info = i2c_get_clientdata(client); - - if (info) - regulator_unregister(info->regulator); - - return 0; -} - static const struct i2c_device_id max8649_id[] = { { "max8649", 0 }, { } @@ -262,7 +253,6 @@ MODULE_DEVICE_TABLE(i2c, max8649_id); static struct i2c_driver max8649_driver = { .probe = max8649_regulator_probe, - .remove = max8649_regulator_remove, .driver = { .name = "max8649", }, |