]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging:iio:ad7780: Switch to the gpio descriptor interface
authorDragos Bogdan <dragos.bogdan@analog.com>
Wed, 18 Nov 2015 10:35:34 +0000 (12:35 +0200)
committerJonathan Cameron <jic23@kernel.org>
Wed, 18 Nov 2015 18:58:29 +0000 (18:58 +0000)
Use the gpiod interface for the powerdown_gpio instead of the deprecated
old non-descriptor interface.

The powerdown pin can be tied high, so the gpio is optional.
Remove the gpio_pdrst platform_data member since the new interface is
used.

Signed-off-by: Dragos Bogdan <dragos.bogdan@analog.com>
Acked-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/adc/ad7780.c
drivers/staging/iio/adc/ad7780.h

index 618b41faa289a54eedd73bba17329075a5eacbe4..98b5fc492eff295827bde15be99e96b7d40f88d1 100644 (file)
@@ -15,7 +15,7 @@
 #include <linux/regulator/consumer.h>
 #include <linux/err.h>
 #include <linux/sched.h>
-#include <linux/gpio.h>
+#include <linux/gpio/consumer.h>
 #include <linux/module.h>
 
 #include <linux/iio/iio.h>
@@ -42,7 +42,7 @@ struct ad7780_chip_info {
 struct ad7780_state {
        const struct ad7780_chip_info   *chip_info;
        struct regulator                *reg;
-       int                             powerdown_gpio;
+       struct gpio_desc                *powerdown_gpio;
        unsigned int    gain;
        u16                             int_vref_mv;
 
@@ -77,8 +77,7 @@ static int ad7780_set_mode(struct ad_sigma_delta *sigma_delta,
                break;
        }
 
-       if (gpio_is_valid(st->powerdown_gpio))
-               gpio_set_value(st->powerdown_gpio, val);
+       gpiod_set_value(st->powerdown_gpio, val);
 
        return 0;
 }
@@ -205,18 +204,14 @@ static int ad7780_probe(struct spi_device *spi)
        indio_dev->num_channels = 1;
        indio_dev->info = &ad7780_info;
 
-       if (pdata && gpio_is_valid(pdata->gpio_pdrst)) {
-               ret = devm_gpio_request_one(&spi->dev,
-                                           pdata->gpio_pdrst,
-                                           GPIOF_OUT_INIT_LOW,
-                                           "AD7780 /PDRST");
-               if (ret) {
-                       dev_err(&spi->dev, "failed to request GPIO PDRST\n");
-                       goto error_disable_reg;
-               }
-               st->powerdown_gpio = pdata->gpio_pdrst;
-       } else {
-               st->powerdown_gpio = -1;
+       st->powerdown_gpio = devm_gpiod_get_optional(&spi->dev,
+                                                    "powerdown",
+                                                    GPIOD_OUT_LOW);
+       if (IS_ERR(st->powerdown_gpio)) {
+               ret = PTR_ERR(st->powerdown_gpio);
+               dev_err(&spi->dev, "Failed to request powerdown GPIO: %d\n",
+                       ret);
+               goto error_disable_reg;
        }
 
        ret = ad_sd_setup_buffer_and_trigger(indio_dev);
index 67e511c3d6f04caa9d74e18d6de2ca9a3938cede..46f61c9e798e6ad1823acc32e9d4aff352c72cae 100644 (file)
@@ -24,7 +24,6 @@
 
 struct ad7780_platform_data {
        u16                             vref_mv;
-       int                             gpio_pdrst;
 };
 
 #endif /* IIO_ADC_AD7780_H_ */