diff options
author | Mark Brown <broonie@kernel.org> | 2018-08-08 17:32:10 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-08-08 17:32:10 +0100 |
commit | 35ef57a4190d4253b73720cf0402158eda0f1bc8 (patch) | |
tree | f7346839cbfe76beb8c09a6f0f6c5012cc28cff8 /sound/soc/qcom/qdsp6/q6asm-dai.c | |
parent | 0a047f07525fecfa8f6fccc5d30afff7e816de8d (diff) | |
parent | 0717edbdfed61b4c1e8291140f78882d3a481042 (diff) |
Merge branch 'asoc-4.18' into asoc-4.19 wmadsp dep
Diffstat (limited to 'sound/soc/qcom/qdsp6/q6asm-dai.c')
-rw-r--r-- | sound/soc/qcom/qdsp6/q6asm-dai.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/soc/qcom/qdsp6/q6asm-dai.c b/sound/soc/qcom/qdsp6/q6asm-dai.c index acf96c6549fc..9db9a2944ef2 100644 --- a/sound/soc/qcom/qdsp6/q6asm-dai.c +++ b/sound/soc/qcom/qdsp6/q6asm-dai.c @@ -389,7 +389,9 @@ static int q6asm_dai_close(struct snd_pcm_substream *substream) struct q6asm_dai_rtd *prtd = runtime->private_data; if (prtd->audio_client) { - q6asm_cmd(prtd->audio_client, CMD_CLOSE); + if (prtd->state) + q6asm_cmd(prtd->audio_client, CMD_CLOSE); + q6asm_unmap_memory_regions(substream->stream, prtd->audio_client); q6asm_audio_client_free(prtd->audio_client); |