diff options
Diffstat (limited to 'sound/soc/omap/omap-mcbsp.c')
| -rw-r--r-- | sound/soc/omap/omap-mcbsp.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/soc/omap/omap-mcbsp.c b/sound/soc/omap/omap-mcbsp.c index e814a9591f7..8ad9dc90100 100644 --- a/sound/soc/omap/omap-mcbsp.c +++ b/sound/soc/omap/omap-mcbsp.c @@ -297,7 +297,9 @@ static int omap_mcbsp_dai_hw_params(struct snd_pcm_substream *substream,  	omap_mcbsp_dai_dma_params[id][substream->stream].sync_mode = sync_mode;  	omap_mcbsp_dai_dma_params[id][substream->stream].data_type =  							OMAP_DMA_DATA_TYPE_S16; -	cpu_dai->dma_data = &omap_mcbsp_dai_dma_params[id][substream->stream]; + +	snd_soc_dai_set_dma_data(cpu_dai, substream, +		&omap_mcbsp_dai_dma_params[id][substream->stream]);  	if (mcbsp_data->configured) {  		/* McBSP already configured by another stream */  |