All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] SoC: max98357a: use flags argument of devm_gpiod_get to set direction
@ 2015-05-19  6:58 Uwe Kleine-König
  2015-05-19 18:30 ` Kenneth Westfield
  2015-05-20 18:08 ` Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Uwe Kleine-König @ 2015-05-19  6:58 UTC (permalink / raw)
  To: Mark Brown, Liam Girdwood; +Cc: Kenneth Westfield, alsa-devel, kernel

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.

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

Fixes: af5adf129369 ("ASoC: max98357a: Add MAX98357A codec driver")
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 sound/soc/codecs/max98357a.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/codecs/max98357a.c b/sound/soc/codecs/max98357a.c
index bf3e933ee895..3a2fda08a893 100644
--- a/sound/soc/codecs/max98357a.c
+++ b/sound/soc/codecs/max98357a.c
@@ -60,13 +60,12 @@ static int max98357a_codec_probe(struct snd_soc_codec *codec)
 {
 	struct gpio_desc *sdmode;
 
-	sdmode = devm_gpiod_get(codec->dev, "sdmode");
+	sdmode = devm_gpiod_get(codec->dev, "sdmode", GPIOD_OUT_LOW);
 	if (IS_ERR(sdmode)) {
 		dev_err(codec->dev, "%s() unable to get sdmode GPIO: %ld\n",
 				__func__, PTR_ERR(sdmode));
 		return PTR_ERR(sdmode);
 	}
-	gpiod_direction_output(sdmode, 0);
 	snd_soc_codec_set_drvdata(codec, sdmode);
 
 	return 0;
-- 
2.1.4

_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

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

* Re: [PATCH] SoC: max98357a: use flags argument of devm_gpiod_get to set direction
  2015-05-19  6:58 [PATCH] SoC: max98357a: use flags argument of devm_gpiod_get to set direction Uwe Kleine-König
@ 2015-05-19 18:30 ` Kenneth Westfield
  2015-05-20 18:08 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Kenneth Westfield @ 2015-05-19 18:30 UTC (permalink / raw)
  To: Uwe Kleine-K??nig
  Cc: alsa-devel, Kenneth Westfield, Mark Brown, Liam Girdwood, kernel

On Mon, May 18, 2015 at 11:58:09PM -0700, 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.
> 
> Use this to simplify the driver. Furthermore this is one caller less
> that stops us making the flags argument to gpiod_get*() mandatory.
> 
> Fixes: af5adf129369 ("ASoC: max98357a: Add MAX98357A codec driver")
> Signed-off-by: Uwe Kleine-K??nig <u.kleine-koenig@pengutronix.de>

Acked-by: Kenneth Westfield <kwestfie@codeaurora.org>

-- 
Kenneth Westfield
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, 
a Linux Foundation Collaborative Project

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

* Re: [PATCH] SoC: max98357a: use flags argument of devm_gpiod_get to set direction
  2015-05-19  6:58 [PATCH] SoC: max98357a: use flags argument of devm_gpiod_get to set direction Uwe Kleine-König
  2015-05-19 18:30 ` Kenneth Westfield
@ 2015-05-20 18:08 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2015-05-20 18:08 UTC (permalink / raw)
  To: Uwe Kleine-König
  Cc: Kenneth Westfield, alsa-devel, Liam Girdwood, kernel


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

On Tue, May 19, 2015 at 08:58:09AM +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.

Applied, thanks.  Please use subject lines reflecting the style for the
subsystem.

[-- 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] 3+ messages in thread

end of thread, other threads:[~2015-05-20 18:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-19  6:58 [PATCH] SoC: max98357a: use flags argument of devm_gpiod_get to set direction Uwe Kleine-König
2015-05-19 18:30 ` Kenneth Westfield
2015-05-20 18:08 ` Mark Brown

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.