All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] power_supply: bq24257: use flags argument of devm_gpiod_get
@ 2015-06-12  7:24 Uwe Kleine-König
  2015-06-12  8:54 ` [PATCH v2] " Uwe Kleine-König
  0 siblings, 1 reply; 3+ messages in thread
From: Uwe Kleine-König @ 2015-06-12  7:24 UTC (permalink / raw)
  To: Sebastian Reichel, Dmitry Eremin-Solenikov, David Woodhouse
  Cc: linux-pm, kernel, Alexandre Courbot, Kishon Vijay Abraham I,
	Laurentiu Palcu, Krzysztof Kozlowski

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>
---
Hello,

this patch applies to next and is only necessary on top of 2219a935963e
(power_supply: Add TI BQ24257 charger driver).

Note I plan to make the flags parameter mandatory for 4.3. So unless
this change gets into 4.2, would it be ok to let it go in via the gpio
tree?

Best regards
Uwe

 drivers/power/bq24257_charger.c | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/drivers/power/bq24257_charger.c b/drivers/power/bq24257_charger.c
index ce7f5bbfd5e3..d072f1838526 100644
--- a/drivers/power/bq24257_charger.c
+++ b/drivers/power/bq24257_charger.c
@@ -611,28 +611,24 @@ 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);
-	if (IS_ERR(bq->pg)) {
+	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)
-- 
2.1.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH v2] power_supply: bq24257: use flags argument of devm_gpiod_get
  2015-06-12  7:24 [PATCH] power_supply: bq24257: use flags argument of devm_gpiod_get Uwe Kleine-König
@ 2015-06-12  8:54 ` Uwe Kleine-König
  2015-06-13  2:39   ` Sebastian Reichel
  0 siblings, 1 reply; 3+ messages in thread
From: Uwe Kleine-König @ 2015-06-12  8:54 UTC (permalink / raw)
  To: Sebastian Reichel, Dmitry Eremin-Solenikov, David Woodhouse
  Cc: linux-pm, kernel, Alexandre Courbot, Kishon Vijay Abraham I,
	Laurentiu Palcu, Krzysztof Kozlowski

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>
---
Changes since (implicit) v1, sent with Message-Id: 1434093882-31795-1-git-send-email-u.kleine-koenig@pengutronix.de:

 - make it compilable

 drivers/power/bq24257_charger.c | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/drivers/power/bq24257_charger.c b/drivers/power/bq24257_charger.c
index ce7f5bbfd5e3..5859bc7c1616 100644
--- a/drivers/power/bq24257_charger.c
+++ b/drivers/power/bq24257_charger.c
@@ -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)
-- 
2.1.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] power_supply: bq24257: use flags argument of devm_gpiod_get
  2015-06-12  8:54 ` [PATCH v2] " Uwe Kleine-König
@ 2015-06-13  2:39   ` Sebastian Reichel
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastian Reichel @ 2015-06-13  2:39 UTC (permalink / raw)
  To: Uwe Kleine-König
  Cc: Dmitry Eremin-Solenikov, David Woodhouse, linux-pm, kernel,
	Alexandre Courbot, Kishon Vijay Abraham I, Laurentiu Palcu,
	Krzysztof Kozlowski

[-- Attachment #1: Type: text/plain, Size: 714 bytes --]

Hi,

On Fri, Jun 12, 2015 at 10:54:04AM +0200, Uwe Kleine-König wrote:
> 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>
> ---
> Changes since (implicit) v1, sent with Message-Id: 1434093882-31795-1-git-send-email-u.kleine-koenig@pengutronix.de:
> 
>  - make it compilable

Thanks, queued for 4.2.

-- Sebastian

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-06-13  2:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-12  7:24 [PATCH] power_supply: bq24257: use flags argument of devm_gpiod_get Uwe Kleine-König
2015-06-12  8:54 ` [PATCH v2] " Uwe Kleine-König
2015-06-13  2:39   ` Sebastian Reichel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.