aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/soc/atmel/atmel-pcm.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/sound/soc/atmel/atmel-pcm.c b/sound/soc/atmel/atmel-pcm.c
index 67a32920af22..fdb255372127 100644
--- a/sound/soc/atmel/atmel-pcm.c
+++ b/sound/soc/atmel/atmel-pcm.c
@@ -417,8 +417,10 @@ static void atmel_pcm_free_dma_buffers(struct snd_pcm *pcm)
417#ifdef CONFIG_PM 417#ifdef CONFIG_PM
418static int atmel_pcm_suspend(struct snd_soc_dai_link *dai_link) 418static int atmel_pcm_suspend(struct snd_soc_dai_link *dai_link)
419{ 419{
420 struct snd_soc_dai *dai = dai_link->cpu_dai; 420 struct snd_pcm *pcm = dai_link->pcm;
421 struct snd_pcm_runtime *runtime = dai->runtime; 421 struct snd_pcm_str *stream = &pcm->streams[0];
422 struct snd_pcm_substream *substream = stream->substream;
423 struct snd_pcm_runtime *runtime = substream->runtime;
422 struct atmel_runtime_data *prtd; 424 struct atmel_runtime_data *prtd;
423 struct atmel_pcm_dma_params *params; 425 struct atmel_pcm_dma_params *params;
424 426
@@ -442,8 +444,10 @@ static int atmel_pcm_suspend(struct snd_soc_dai_link *dai_link)
442 444
443static int atmel_pcm_resume(struct snd_soc_dai_link *dai_link) 445static int atmel_pcm_resume(struct snd_soc_dai_link *dai_link)
444{ 446{
445 struct snd_soc_dai *dai = dai_link->cpu_dai; 447 struct snd_pcm *pcm = dai_link->pcm;
446 struct snd_pcm_runtime *runtime = dai->runtime; 448 struct snd_pcm_str *stream = &pcm->streams[0];
449 struct snd_pcm_substream *substream = stream->substream;
450 struct snd_pcm_runtime *runtime = substream->runtime;
447 struct atmel_runtime_data *prtd; 451 struct atmel_runtime_data *prtd;
448 struct atmel_pcm_dma_params *params; 452 struct atmel_pcm_dma_params *params;
449 453