diff options
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/at91/at91-i2s.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/soc/at91/at91-i2s.c b/sound/soc/at91/at91-i2s.c index 203e6948cd99..876d391c7013 100644 --- a/sound/soc/at91/at91-i2s.c +++ b/sound/soc/at91/at91-i2s.c | |||
@@ -296,6 +296,13 @@ static int at91_i2s_startup(struct snd_pcm_substream *substream) | |||
296 | ssc_p->dir_mask |= dir_mask; | 296 | ssc_p->dir_mask |= dir_mask; |
297 | spin_unlock_irq(&ssc_p->lock); | 297 | spin_unlock_irq(&ssc_p->lock); |
298 | 298 | ||
299 | /* | ||
300 | * dma_data is not set until hw_params() is called and | ||
301 | * shutdown() depends on this value being NULL if hw_params() | ||
302 | * was not called. | ||
303 | */ | ||
304 | rtd->cpu_dai->dma_data = NULL; | ||
305 | |||
299 | return 0; | 306 | return 0; |
300 | } | 307 | } |
301 | 308 | ||