iio: adc: ad7887: Use devm_* APIs
devm_* APIs are device managed and make code simpler. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Acked-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
a35801326b
commit
82429e0d33
@ -237,25 +237,24 @@ static int ad7887_probe(struct spi_device *spi)
|
|||||||
{
|
{
|
||||||
struct ad7887_platform_data *pdata = spi->dev.platform_data;
|
struct ad7887_platform_data *pdata = spi->dev.platform_data;
|
||||||
struct ad7887_state *st;
|
struct ad7887_state *st;
|
||||||
struct iio_dev *indio_dev = iio_device_alloc(sizeof(*st));
|
struct iio_dev *indio_dev;
|
||||||
uint8_t mode;
|
uint8_t mode;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st));
|
||||||
if (indio_dev == NULL)
|
if (indio_dev == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
st = iio_priv(indio_dev);
|
st = iio_priv(indio_dev);
|
||||||
|
|
||||||
if (!pdata || !pdata->use_onchip_ref) {
|
if (!pdata || !pdata->use_onchip_ref) {
|
||||||
st->reg = regulator_get(&spi->dev, "vref");
|
st->reg = devm_regulator_get(&spi->dev, "vref");
|
||||||
if (IS_ERR(st->reg)) {
|
if (IS_ERR(st->reg))
|
||||||
ret = PTR_ERR(st->reg);
|
return PTR_ERR(st->reg);
|
||||||
goto error_free;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = regulator_enable(st->reg);
|
ret = regulator_enable(st->reg);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto error_put_reg;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
st->chip_info =
|
st->chip_info =
|
||||||
@ -331,11 +330,6 @@ error_unregister_ring:
|
|||||||
error_disable_reg:
|
error_disable_reg:
|
||||||
if (st->reg)
|
if (st->reg)
|
||||||
regulator_disable(st->reg);
|
regulator_disable(st->reg);
|
||||||
error_put_reg:
|
|
||||||
if (st->reg)
|
|
||||||
regulator_put(st->reg);
|
|
||||||
error_free:
|
|
||||||
iio_device_free(indio_dev);
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
@ -347,11 +341,8 @@ static int ad7887_remove(struct spi_device *spi)
|
|||||||
|
|
||||||
iio_device_unregister(indio_dev);
|
iio_device_unregister(indio_dev);
|
||||||
iio_triggered_buffer_cleanup(indio_dev);
|
iio_triggered_buffer_cleanup(indio_dev);
|
||||||
if (st->reg) {
|
if (st->reg)
|
||||||
regulator_disable(st->reg);
|
regulator_disable(st->reg);
|
||||||
regulator_put(st->reg);
|
|
||||||
}
|
|
||||||
iio_device_free(indio_dev);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user