ASoC: s6000: Fix unlocked snd_pcm_stop() call
snd_pcm_stop() must be called in the PCM substream lock context. Cc: <stable@vger.kernel.org> Acked-by: Mark Brown <broonie@linaro.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
@@ -128,7 +128,9 @@ static irqreturn_t s6000_pcm_irq(int irq, void *data)
|
|||||||
substream->runtime &&
|
substream->runtime &&
|
||||||
snd_pcm_running(substream)) {
|
snd_pcm_running(substream)) {
|
||||||
dev_dbg(pcm->dev, "xrun\n");
|
dev_dbg(pcm->dev, "xrun\n");
|
||||||
|
snd_pcm_stream_lock(substream);
|
||||||
snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
|
snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
|
||||||
|
snd_pcm_stream_unlock(substream);
|
||||||
ret = IRQ_HANDLED;
|
ret = IRQ_HANDLED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user