diff options
author | Aaro Koskinen <aaro.koskinen@iki.fi> | 2016-01-24 00:36:40 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-01-27 20:27:09 +0000 |
commit | ee43a1a0cd2a8f33cddfa1323a60b5cfcf865ba0 (patch) | |
tree | 00f10078dc8c246efb787f794122a9ccba02c34a /sound/soc | |
parent | 92e963f50fc74041b5e9e744c330dca48e04f08d (diff) | |
download | linux-stable-ee43a1a0cd2a8f33cddfa1323a60b5cfcf865ba0.tar.gz linux-stable-ee43a1a0cd2a8f33cddfa1323a60b5cfcf865ba0.tar.bz2 linux-stable-ee43a1a0cd2a8f33cddfa1323a60b5cfcf865ba0.zip |
ASoC: simple-card: don't fail if sysclk setting is not supported
Commit e22579713ae1 ("ASoC: simple card: set cpu-dai sysclk
with mclk-fs") added sysclk / SND_SOC_CLOCK_OUT setting, that makes
asoc_simple_card_hw_params fail if the operation is not supported,
although the intention clearly was to ignore ENOTSUPP. Fix it.
The patch fixes audio playback on Kirkwood / OpenRD client,
where the following errors are seen:
asoc-simple-card sound: ASoC: machine hw_params failed: -524
alsa-lib: /alsa-lib-1.0.28/src/pcm/pcm_hw.c:327:(snd_pcm_hw_hw_params) SNDRV_PCM_IOCTL_HW_PARAMS failed (-524): Unknown error 524
Fixes: e22579713ae1 ("ASoC: simple card: set cpu-dai sysclk with mclk-fs")
Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/generic/simple-card.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c index 1ded8811598e..2389ab47e25f 100644 --- a/sound/soc/generic/simple-card.c +++ b/sound/soc/generic/simple-card.c @@ -99,7 +99,7 @@ static int asoc_simple_card_hw_params(struct snd_pcm_substream *substream, if (ret && ret != -ENOTSUPP) goto err; } - + return 0; err: return ret; } |