aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/pxa
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/pxa')
-rw-r--r--sound/soc/pxa/pxa2xx-pcm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/pxa/pxa2xx-pcm.c b/sound/soc/pxa/pxa2xx-pcm.c
index d73d6f6fb12d..da28394c5e56 100644
--- a/sound/soc/pxa/pxa2xx-pcm.c
+++ b/sound/soc/pxa/pxa2xx-pcm.c
@@ -97,14 +97,14 @@ static int pxa2xx_soc_pcm_new(struct snd_soc_pcm_runtime *rtd)
97 if (!card->dev->coherent_dma_mask) 97 if (!card->dev->coherent_dma_mask)
98 card->dev->coherent_dma_mask = DMA_BIT_MASK(32); 98 card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
99 99
100 if (dai->driver->playback.channels_min) { 100 if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
101 ret = pxa2xx_pcm_preallocate_dma_buffer(pcm, 101 ret = pxa2xx_pcm_preallocate_dma_buffer(pcm,
102 SNDRV_PCM_STREAM_PLAYBACK); 102 SNDRV_PCM_STREAM_PLAYBACK);
103 if (ret) 103 if (ret)
104 goto out; 104 goto out;
105 } 105 }
106 106
107 if (dai->driver->capture.channels_min) { 107 if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
108 ret = pxa2xx_pcm_preallocate_dma_buffer(pcm, 108 ret = pxa2xx_pcm_preallocate_dma_buffer(pcm,
109 SNDRV_PCM_STREAM_CAPTURE); 109 SNDRV_PCM_STREAM_CAPTURE);
110 if (ret) 110 if (ret)