public inbox for alsa-devel@alsa-project.org
 help / color / mirror / Atom feed
* [PATCH v2 1/2] ASoC: sta32x: Use devm_gpiod_get_optional at appropriate place
@ 2015-05-09 15:08 Axel Lin
  2015-05-09 15:09 ` [PATCH v2 2/2] ASoC: sta350: " Axel Lin
  2015-05-12 17:52 ` [PATCH v2 1/2] ASoC: sta32x: " Mark Brown
  0 siblings, 2 replies; 4+ messages in thread
From: Axel Lin @ 2015-05-09 15:08 UTC (permalink / raw)
  To: Mark Brown
  Cc: Johannes Stezenbach, Sven Brandau, Liam Girdwood,
	alsa-devel@alsa-project.org

devm_gpiod_get_optional() is equivalent to devm_gpiod_get(), except that
when no GPIO was assigned to the requested function it will return NULL.
This is convenient for drivers that need to handle optional GPIOs.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
v2: Fixup subject line
 sound/soc/codecs/sta32x.c | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/sound/soc/codecs/sta32x.c b/sound/soc/codecs/sta32x.c
index 033b7d9..847fb20 100644
--- a/sound/soc/codecs/sta32x.c
+++ b/sound/soc/codecs/sta32x.c
@@ -1095,16 +1095,10 @@ static int sta32x_i2c_probe(struct i2c_client *i2c,
 #endif
 
 	/* GPIOs */
-	sta32x->gpiod_nreset = devm_gpiod_get(dev, "reset");
-	if (IS_ERR(sta32x->gpiod_nreset)) {
-		ret = PTR_ERR(sta32x->gpiod_nreset);
-		if (ret != -ENOENT && ret != -ENOSYS)
-			return ret;
-
-		sta32x->gpiod_nreset = NULL;
-	} else {
-		gpiod_direction_output(sta32x->gpiod_nreset, 0);
-	}
+	sta32x->gpiod_nreset = devm_gpiod_get_optional(dev, "reset",
+						       GPIOD_OUT_LOW);
+	if (IS_ERR(sta32x->gpiod_nreset))
+		return PTR_ERR(sta32x->gpiod_nreset);
 
 	/* regulators */
 	for (i = 0; i < ARRAY_SIZE(sta32x->supplies); i++)
-- 
2.1.0

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

* [PATCH v2 2/2] ASoC: sta350: Use devm_gpiod_get_optional at appropriate place
  2015-05-09 15:08 [PATCH v2 1/2] ASoC: sta32x: Use devm_gpiod_get_optional at appropriate place Axel Lin
@ 2015-05-09 15:09 ` Axel Lin
  2015-05-12 17:52   ` Mark Brown
  2015-05-12 17:52 ` [PATCH v2 1/2] ASoC: sta32x: " Mark Brown
  1 sibling, 1 reply; 4+ messages in thread
From: Axel Lin @ 2015-05-09 15:09 UTC (permalink / raw)
  To: Mark Brown
  Cc: Johannes Stezenbach, Sven Brandau, Liam Girdwood,
	alsa-devel@alsa-project.org

devm_gpiod_get_optional is equivalent to devm_gpiod_get(), except that
when no GPIO was assigned to the requested function it will return NULL.
This is convenient for drivers that need to handle optional GPIOs.

I just checked the code in commit 34d7c3905adb9a9
("ASoC: improve usage of gpiod API") and found that it should use
devm_gpiod_get_optional rather than devm_gpiod_get here.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
v2: Fixup subject line

 sound/soc/codecs/sta350.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/codecs/sta350.c b/sound/soc/codecs/sta350.c
index 50d8bbf..0cea8f9 100644
--- a/sound/soc/codecs/sta350.c
+++ b/sound/soc/codecs/sta350.c
@@ -1217,8 +1217,8 @@ static int sta350_i2c_probe(struct i2c_client *i2c,
 	if (IS_ERR(sta350->gpiod_nreset))
 		return PTR_ERR(sta350->gpiod_nreset);
 
-	sta350->gpiod_power_down = devm_gpiod_get(dev, "power-down",
-						  GPIOD_OUT_LOW);
+	sta350->gpiod_power_down = devm_gpiod_get_optional(dev, "power-down",
+							   GPIOD_OUT_LOW);
 	if (IS_ERR(sta350->gpiod_power_down))
 		return PTR_ERR(sta350->gpiod_power_down);
 
-- 
2.1.0

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

* Re: [PATCH v2 1/2] ASoC: sta32x: Use devm_gpiod_get_optional at appropriate place
  2015-05-09 15:08 [PATCH v2 1/2] ASoC: sta32x: Use devm_gpiod_get_optional at appropriate place Axel Lin
  2015-05-09 15:09 ` [PATCH v2 2/2] ASoC: sta350: " Axel Lin
@ 2015-05-12 17:52 ` Mark Brown
  1 sibling, 0 replies; 4+ messages in thread
From: Mark Brown @ 2015-05-12 17:52 UTC (permalink / raw)
  To: Axel Lin
  Cc: Johannes Stezenbach, Sven Brandau, Liam Girdwood,
	alsa-devel@alsa-project.org


[-- Attachment #1.1: Type: text/plain, Size: 295 bytes --]

On Sat, May 09, 2015 at 11:08:33PM +0800, Axel Lin wrote:
> devm_gpiod_get_optional() is equivalent to devm_gpiod_get(), except that
> when no GPIO was assigned to the requested function it will return NULL.
> This is convenient for drivers that need to handle optional GPIOs.

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

* Re: [PATCH v2 2/2] ASoC: sta350: Use devm_gpiod_get_optional at appropriate place
  2015-05-09 15:09 ` [PATCH v2 2/2] ASoC: sta350: " Axel Lin
@ 2015-05-12 17:52   ` Mark Brown
  0 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2015-05-12 17:52 UTC (permalink / raw)
  To: Axel Lin
  Cc: Johannes Stezenbach, Sven Brandau, Liam Girdwood,
	alsa-devel@alsa-project.org


[-- Attachment #1.1: Type: text/plain, Size: 293 bytes --]

On Sat, May 09, 2015 at 11:09:32PM +0800, Axel Lin wrote:
> devm_gpiod_get_optional is equivalent to devm_gpiod_get(), except that
> when no GPIO was assigned to the requested function it will return NULL.
> This is convenient for drivers that need to handle optional GPIOs.

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

end of thread, other threads:[~2015-05-12 17:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-09 15:08 [PATCH v2 1/2] ASoC: sta32x: Use devm_gpiod_get_optional at appropriate place Axel Lin
2015-05-09 15:09 ` [PATCH v2 2/2] ASoC: sta350: " Axel Lin
2015-05-12 17:52   ` Mark Brown
2015-05-12 17:52 ` [PATCH v2 1/2] ASoC: sta32x: " Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox