]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
power_supply: bq24257: use flags argument of devm_gpiod_get
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 12 Jun 2015 08:54:04 +0000 (10:54 +0200)
committerSebastian Reichel <sre@kernel.org>
Sat, 13 Jun 2015 02:06:38 +0000 (04:06 +0200)
Since 39b2bbe3d715 (gpio: add flags argument to gpiod_get*() functions)
which appeared in v3.17-rc1, the gpiod_get* functions take an additional
parameter that allows to specify direction and initial value for output.

Simplify driver accordingly. Furthermore this is one caller less that
stops us making the flags argument to gpiod_get*() mandatory.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
drivers/power/bq24257_charger.c

index ce7f5bbfd5e331fd0f4b214e3f9786134b180de4..5859bc7c16167d667f30ef66ff101297af319a63 100644 (file)
@@ -608,31 +608,26 @@ static int bq24257_power_supply_init(struct bq24257_device *bq)
 
 static int bq24257_irq_probe(struct bq24257_device *bq)
 {
-       int ret;
        struct gpio_desc *stat_irq;
 
-       stat_irq = devm_gpiod_get_index(bq->dev, BQ24257_STAT_IRQ, 0);
+       stat_irq = devm_gpiod_get_index(bq->dev, BQ24257_STAT_IRQ, 0, GPIOD_IN);
        if (IS_ERR(stat_irq)) {
                dev_err(bq->dev, "could not probe stat_irq pin\n");
                return PTR_ERR(stat_irq);
        }
 
-       ret = gpiod_direction_input(stat_irq);
-       if (ret < 0)
-               return ret;
-
        return gpiod_to_irq(stat_irq);
 }
 
 static int bq24257_pg_gpio_probe(struct bq24257_device *bq)
 {
-       bq->pg = devm_gpiod_get_index(bq->dev, BQ24257_PG_GPIO, 0);
+       bq->pg = devm_gpiod_get_index(bq->dev, BQ24257_PG_GPIO, 0, GPIOD_IN);
        if (IS_ERR(bq->pg)) {
                dev_err(bq->dev, "could not probe PG pin\n");
                return PTR_ERR(bq->pg);
        }
 
-       return gpiod_direction_input(bq->pg);
+       return 0;
 }
 
 static int bq24257_fw_probe(struct bq24257_device *bq)