diff options
-rw-r--r-- | sound/soc/pxa/mmp-pcm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/pxa/mmp-pcm.c b/sound/soc/pxa/mmp-pcm.c index 8235e231d89c..7929e19b0ef5 100644 --- a/sound/soc/pxa/mmp-pcm.c +++ b/sound/soc/pxa/mmp-pcm.c | |||
@@ -201,10 +201,9 @@ static int mmp_pcm_preallocate_dma_buffer(struct snd_pcm_substream *substream, | |||
201 | if (!gpool) | 201 | if (!gpool) |
202 | return -ENOMEM; | 202 | return -ENOMEM; |
203 | 203 | ||
204 | buf->area = (unsigned char *)gen_pool_alloc(gpool, size); | 204 | buf->area = gen_pool_dma_alloc(gpool, size, &buf->addr); |
205 | if (!buf->area) | 205 | if (!buf->area) |
206 | return -ENOMEM; | 206 | return -ENOMEM; |
207 | buf->addr = gen_pool_virt_to_phys(gpool, (unsigned long)buf->area); | ||
208 | buf->bytes = size; | 207 | buf->bytes = size; |
209 | return 0; | 208 | return 0; |
210 | } | 209 | } |