Commit 8f485a16 authored by David Lechner's avatar David Lechner Committed by Jonathan Cameron

iio: adc: ad7793: use devm_regulator_get_enable_read_voltage

This makes use of the new devm_regulator_get_enable_read_voltage()
function to reduce boilerplate code.
Signed-off-by: default avatarDavid Lechner <dlechner@baylibre.com>
Reviewed-by: default avatarNuno Sa <nuno.sa@analog.com>
Link: https://patch.msgid.link/20240612-iio-adc-ref-supply-refactor-v2-4-fa622e7354e9@baylibre.comSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent c53ccb4e
...@@ -152,7 +152,6 @@ struct ad7793_chip_info { ...@@ -152,7 +152,6 @@ struct ad7793_chip_info {
struct ad7793_state { struct ad7793_state {
const struct ad7793_chip_info *chip_info; const struct ad7793_chip_info *chip_info;
struct regulator *reg;
u16 int_vref_mv; u16 int_vref_mv;
u16 mode; u16 mode;
u16 conf; u16 conf;
...@@ -769,11 +768,6 @@ static const struct ad7793_chip_info ad7793_chip_info_tbl[] = { ...@@ -769,11 +768,6 @@ static const struct ad7793_chip_info ad7793_chip_info_tbl[] = {
}, },
}; };
static void ad7793_reg_disable(void *reg)
{
regulator_disable(reg);
}
static int ad7793_probe(struct spi_device *spi) static int ad7793_probe(struct spi_device *spi)
{ {
const struct ad7793_platform_data *pdata = spi->dev.platform_data; const struct ad7793_platform_data *pdata = spi->dev.platform_data;
...@@ -800,23 +794,11 @@ static int ad7793_probe(struct spi_device *spi) ...@@ -800,23 +794,11 @@ static int ad7793_probe(struct spi_device *spi)
ad_sd_init(&st->sd, indio_dev, spi, &ad7793_sigma_delta_info); ad_sd_init(&st->sd, indio_dev, spi, &ad7793_sigma_delta_info);
if (pdata->refsel != AD7793_REFSEL_INTERNAL) { if (pdata->refsel != AD7793_REFSEL_INTERNAL) {
st->reg = devm_regulator_get(&spi->dev, "refin"); ret = devm_regulator_get_enable_read_voltage(&spi->dev, "refin");
if (IS_ERR(st->reg)) if (ret < 0)
return PTR_ERR(st->reg);
ret = regulator_enable(st->reg);
if (ret)
return ret;
ret = devm_add_action_or_reset(&spi->dev, ad7793_reg_disable, st->reg);
if (ret)
return ret; return ret;
vref_mv = regulator_get_voltage(st->reg); vref_mv = ret / 1000;
if (vref_mv < 0)
return vref_mv;
vref_mv /= 1000;
} else { } else {
vref_mv = 1170; /* Build-in ref */ vref_mv = 1170; /* Build-in ref */
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment