aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/pxa
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2011-06-23 15:10:28 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-06-23 15:10:28 -0400
commit1ae4e9b99682adfe9ae170ed593f26fe89eb65b5 (patch)
treea8f367c65d19d54e7e624b99f36720c86bf7f067 /sound/soc/pxa
parentdf1553c8debddc10c6fa9ebe39f5acf5b13bb190 (diff)
parent53dea36c70c1857149a8c447224e3936eb8b5339 (diff)
Merge branch 'for-3.0' into for-3.1
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)