Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1594225
| From | Jerome Brunet <jbrunet@baylibre.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] ASoC: dio2125: use gpiod_set_value_cansleep |
| Date | 2017-03-07 14:20 +0100 |
| Message-ID | <tinbX-80A-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Use the "cansleep" variant of gpiod_set_value so the driver can be used
with slow gpio controllers as well.
Fixes: 85825d5e8869 ("ASoC: dio2125: add dio2125 amp driver")
Reported-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
---
sound/soc/codecs/dio2125.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/codecs/dio2125.c b/sound/soc/codecs/dio2125.c
index 015e310556d3..09451cd44f9b 100644
--- a/sound/soc/codecs/dio2125.c
+++ b/sound/soc/codecs/dio2125.c
@@ -46,7 +46,7 @@ static int drv_event(struct snd_soc_dapm_widget *w,
return -EINVAL;
}
- gpiod_set_value(priv->gpiod_enable, val);
+ gpiod_set_value_cansleep(priv->gpiod_enable, val);
return 0;
}
--
2.9.3
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] ASoC: dio2125: use gpiod_set_value_cansleep Jerome Brunet <jbrunet@baylibre.com> - 2017-03-07 14:20 +0100 Applied "ASoC: dio2125: use gpiod_set_value_cansleep" to the asoc tree Mark Brown <broonie@kernel.org> - 2017-03-07 20:10 +0100
csiph-web