aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/davinci
diff options
context:
space:
mode:
authorChaithrika U S <chaithrika@ti.com>2010-01-20 06:36:33 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2010-01-26 06:55:54 -0500
commite473b847424bd215b686cbc1e781e82c904ee967 (patch)
treea0358b05be9cc3bf8e31938e05ac3d01a5030f51 /sound/soc/davinci
parentf1487fcbe47cd2bc0c71e8598bf9eb6a82dec544 (diff)
ASoC: DaVinci: Fix stream restart error
Sometimes after a suspend-resume cycle, the ALSA application restarts the stream when resume fails and McASP fails to work as the clock is not enabled. This patch corrects this bug. Testes on TI DA850/OMAP-L138 EVM. Signed-off-by: Chaithrika U S <chaithrika@ti.com> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/davinci')
-rw-r--r--sound/soc/davinci/davinci-mcasp.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sound/soc/davinci/davinci-mcasp.c b/sound/soc/davinci/davinci-mcasp.c
index a613bbb0bc91..ab6518d86f18 100644
--- a/sound/soc/davinci/davinci-mcasp.c
+++ b/sound/soc/davinci/davinci-mcasp.c
@@ -768,13 +768,12 @@ static int davinci_mcasp_trigger(struct snd_pcm_substream *substream,
768 768
769 switch (cmd) { 769 switch (cmd) {
770 case SNDRV_PCM_TRIGGER_RESUME: 770 case SNDRV_PCM_TRIGGER_RESUME:
771 case SNDRV_PCM_TRIGGER_START:
772 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
771 if (!dev->clk_active) { 773 if (!dev->clk_active) {
772 clk_enable(dev->clk); 774 clk_enable(dev->clk);
773 dev->clk_active = 1; 775 dev->clk_active = 1;
774 } 776 }
775 /* Fall through */
776 case SNDRV_PCM_TRIGGER_START:
777 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
778 davinci_mcasp_start(dev, substream->stream); 777 davinci_mcasp_start(dev, substream->stream);
779 break; 778 break;
780 779