diff options
| author | Jean-Francois Moine <moinejf@free.fr> | 2015-07-21 12:32:58 -0400 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2015-07-21 13:07:01 -0400 |
| commit | c4a42915d84ad4b5b5e13aeed5da67f458e22399 (patch) | |
| tree | e4fa270b3ca573f4d056c5edb228c94b618fdd96 | |
| parent | bc0195aad0daa2ad5b0d76cce22b167bc3435590 (diff) | |
ASoC: kirkwood: prevent double streaming
The kirkwood audio subsystem presents 2 PCM's for one source.
Streaming on a second PCM while the first one is active
cuts this last one.
Then, ending the last stream gives a kernel trap in free_irq().
Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
Signed-off-by: Mark Brown <broonie@kernel.org>
| -rw-r--r-- | sound/soc/kirkwood/kirkwood-dma.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/soc/kirkwood/kirkwood-dma.c b/sound/soc/kirkwood/kirkwood-dma.c index 4cf2245950d7..dbfdfe99c69d 100644 --- a/sound/soc/kirkwood/kirkwood-dma.c +++ b/sound/soc/kirkwood/kirkwood-dma.c | |||
| @@ -148,10 +148,14 @@ static int kirkwood_dma_open(struct snd_pcm_substream *substream) | |||
| 148 | dram = mv_mbus_dram_info(); | 148 | dram = mv_mbus_dram_info(); |
| 149 | addr = substream->dma_buffer.addr; | 149 | addr = substream->dma_buffer.addr; |
| 150 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { | 150 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 151 | if (priv->substream_play) | ||
| 152 | return -EBUSY; | ||
| 151 | priv->substream_play = substream; | 153 | priv->substream_play = substream; |
| 152 | kirkwood_dma_conf_mbus_windows(priv->io, | 154 | kirkwood_dma_conf_mbus_windows(priv->io, |
| 153 | KIRKWOOD_PLAYBACK_WIN, addr, dram); | 155 | KIRKWOOD_PLAYBACK_WIN, addr, dram); |
| 154 | } else { | 156 | } else { |
| 157 | if (priv->substream_rec) | ||
| 158 | return -EBUSY; | ||
| 155 | priv->substream_rec = substream; | 159 | priv->substream_rec = substream; |
| 156 | kirkwood_dma_conf_mbus_windows(priv->io, | 160 | kirkwood_dma_conf_mbus_windows(priv->io, |
| 157 | KIRKWOOD_RECORD_WIN, addr, dram); | 161 | KIRKWOOD_RECORD_WIN, addr, dram); |
