regulator: Use newly added devres_release() rather than open coding
devres_release() will call the destructor for the resource as well as freeing the devres data. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Liam Girdwood <lrg@ti.com>
This commit is contained in:
Родитель
8b7485ef62
Коммит
361ff50174
|
@ -1459,7 +1459,7 @@ void devm_regulator_put(struct regulator *regulator)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
rc = devres_destroy(regulator->dev, devm_regulator_release,
|
rc = devres_release(regulator->dev, devm_regulator_release,
|
||||||
devm_regulator_match, regulator);
|
devm_regulator_match, regulator);
|
||||||
if (rc == 0)
|
if (rc == 0)
|
||||||
regulator_put(regulator);
|
regulator_put(regulator);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче