aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/fsl
diff options
context:
space:
mode:
authorJoachim Eastwood <joachim.eastwood@jotron.com>2011-12-31 20:43:03 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-01-20 08:58:26 -0500
commit350e16d5293b54e2ef105ebd777f43dbe5a15ffa (patch)
treef5afacc9cdf4dff3c15a9529c45a0d4852d82e4e /sound/soc/fsl
parent6296914ccefe6efefee811436dd7cfad6545f2eb (diff)
ASoC: replace 0xffffffff with DMA_BIT_MASK macro
Signed-off-by: Joachim Eastwood <joachim.eastwood@jotron.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/fsl')
-rw-r--r--sound/soc/fsl/mpc5200_dma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/fsl/mpc5200_dma.c b/sound/soc/fsl/mpc5200_dma.c
index 2112e224a4ac..33adbf1e40d6 100644
--- a/sound/soc/fsl/mpc5200_dma.c
+++ b/sound/soc/fsl/mpc5200_dma.c
@@ -298,7 +298,7 @@ static struct snd_pcm_ops psc_dma_ops = {
298 .hw_params = psc_dma_hw_params, 298 .hw_params = psc_dma_hw_params,
299}; 299};
300 300
301static u64 psc_dma_dmamask = 0xffffffff; 301static u64 psc_dma_dmamask = DMA_BIT_MASK(32);
302static int psc_dma_new(struct snd_soc_pcm_runtime *rtd) 302static int psc_dma_new(struct snd_soc_pcm_runtime *rtd)
303{ 303{
304 struct snd_card *card = rtd->card->snd_card; 304 struct snd_card *card = rtd->card->snd_card;
@@ -314,7 +314,7 @@ static int psc_dma_new(struct snd_soc_pcm_runtime *rtd)
314 if (!card->dev->dma_mask) 314 if (!card->dev->dma_mask)
315 card->dev->dma_mask = &psc_dma_dmamask; 315 card->dev->dma_mask = &psc_dma_dmamask;
316 if (!card->dev->coherent_dma_mask) 316 if (!card->dev->coherent_dma_mask)
317 card->dev->coherent_dma_mask = 0xffffffff; 317 card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
318 318
319 if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) { 319 if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
320 rc = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, pcm->card->dev, 320 rc = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, pcm->card->dev,