Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3802a259 authored by Peter Ujfalusi's avatar Peter Ujfalusi Committed by Mark Brown
Browse files

ASoC: omap-dmic: Assign the dai DMA data at earlier time



Assign the dai dma data at dai driver probe time, not in startup.

Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 64241425
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -113,7 +113,6 @@ static int omap_dmic_dai_startup(struct snd_pcm_substream *substream,


	mutex_unlock(&dmic->mutex);
	mutex_unlock(&dmic->mutex);


	snd_soc_dai_set_dma_data(dai, substream, &dmic->dma_data);
	return ret;
	return ret;
}
}


@@ -417,6 +416,9 @@ static int omap_dmic_probe(struct snd_soc_dai *dai)


	/* Configure DMIC threshold value */
	/* Configure DMIC threshold value */
	dmic->threshold = OMAP_DMIC_THRES_MAX - 3;
	dmic->threshold = OMAP_DMIC_THRES_MAX - 3;

	snd_soc_dai_init_dma_data(dai, NULL, &dmic->dma_data);

	return 0;
	return 0;
}
}