Commit ea2a2ad1 authored by Jerome Brunet's avatar Jerome Brunet Committed by Mark Brown

ASoC: dio2125: use gpiod_set_value_cansleep

Use the "cansleep" variant of gpiod_set_value so the driver can be used
with slow gpio controllers as well.

Fixes: 85825d5e ("ASoC: dio2125: add dio2125 amp driver")
Reported-by: default avatarMark Brown <broonie@kernel.org>
Signed-off-by: default avatarJerome Brunet <jbrunet@baylibre.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 1e03580b
...@@ -46,7 +46,7 @@ static int drv_event(struct snd_soc_dapm_widget *w, ...@@ -46,7 +46,7 @@ static int drv_event(struct snd_soc_dapm_widget *w,
return -EINVAL; return -EINVAL;
} }
gpiod_set_value(priv->gpiod_enable, val); gpiod_set_value_cansleep(priv->gpiod_enable, val);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment