Message ID | 1398687476-10829-1-git-send-email-sr@denx.de (mailing list archive) |
---|---|
State | Accepted |
Commit | 4792b0dbcf3d41a19e76adc9c98c5cc889daa065 |
Headers | show |
On Mon, Apr 28, 2014 at 02:17:52PM +0200, Stefan Roese wrote: > From: Jarkko Nikula <jarkko.nikula@bitmer.com> > > Machine specific trigger callback allows to do final stream start/stop > related operations in a machine driver after setting up the codec, DMA and > DAI. Applied, thanks.
diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c index 2cedf09..a3a7021 100644 --- a/sound/soc/soc-pcm.c +++ b/sound/soc/soc-pcm.c @@ -819,6 +819,13 @@ static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd) if (ret < 0) return ret; } + + if (rtd->dai_link->ops && rtd->dai_link->ops->trigger) { + ret = rtd->dai_link->ops->trigger(substream, cmd); + if (ret < 0) + return ret; + } + return 0; }