iio: adc: ad7266: use devm_regulator_get_enable_read_voltage
authorDavid Lechner <dlechner@baylibre.com>
Wed, 12 Jun 2024 21:03:06 +0000 (16:03 -0500)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 22 Jun 2024 09:51:32 +0000 (10:51 +0100)
This makes use of the new devm_regulator_get_enable_read_voltage()
function to reduce boilerplate code.

Signed-off-by: David Lechner <dlechner@baylibre.com>
Reviewed-by: Nuno Sa <nuno.sa@analog.com>
Link: https://patch.msgid.link/20240612-iio-adc-ref-supply-refactor-v2-2-fa622e7354e9@baylibre.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/adc/ad7266.c

index 353a97f9c0860a29948cd6e5d8a375e39198816d..874d2dc34f9281389b229dca115926285b7579b2 100644 (file)
 
 #include <linux/platform_data/ad7266.h>
 
+#define AD7266_INTERNAL_REF_MV 2500
+
 struct ad7266_state {
        struct spi_device       *spi;
-       struct regulator        *reg;
        unsigned long           vref_mv;
 
        struct spi_transfer     single_xfer[3];
@@ -377,11 +378,6 @@ static const char * const ad7266_gpio_labels[] = {
        "ad0", "ad1", "ad2",
 };
 
-static void ad7266_reg_disable(void *reg)
-{
-       regulator_disable(reg);
-}
-
 static int ad7266_probe(struct spi_device *spi)
 {
        struct ad7266_platform_data *pdata = spi->dev.platform_data;
@@ -396,28 +392,11 @@ static int ad7266_probe(struct spi_device *spi)
 
        st = iio_priv(indio_dev);
 
-       st->reg = devm_regulator_get_optional(&spi->dev, "vref");
-       if (!IS_ERR(st->reg)) {
-               ret = regulator_enable(st->reg);
-               if (ret)
-                       return ret;
-
-               ret = devm_add_action_or_reset(&spi->dev, ad7266_reg_disable, st->reg);
-               if (ret)
-                       return ret;
-
-               ret = regulator_get_voltage(st->reg);
-               if (ret < 0)
-                       return ret;
+       ret = devm_regulator_get_enable_read_voltage(&spi->dev, "vref");
+       if (ret < 0 && ret != -ENODEV)
+               return ret;
 
-               st->vref_mv = ret / 1000;
-       } else {
-               /* Any other error indicates that the regulator does exist */
-               if (PTR_ERR(st->reg) != -ENODEV)
-                       return PTR_ERR(st->reg);
-               /* Use internal reference */
-               st->vref_mv = 2500;
-       }
+       st->vref_mv = ret == -ENODEV ? AD7266_INTERNAL_REF_MV : ret / 1000;
 
        if (pdata) {
                st->fixed_addr = pdata->fixed_addr;