aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Ujfalusi <peter.ujfalusi@ti.com>2015-03-06 02:07:32 -0500
committerMark Brown <broonie@kernel.org>2015-03-06 05:30:15 -0500
commit66e618857ca46433741bf97ceca1b425387400b1 (patch)
tree6a236ef4cc8be6aecb69118a2222d8b3fcb36177
parent6afda7f5075440f6737d953ab00fc82efb6cabae (diff)
ASoC: davinci-mcasp: Fix compilation error
Introduced by commit: 6afda7f50754 ASoC: davinci-mcasp: Allow complete shutdown of McASP when not in use I'm really sorry for this... Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/davinci/davinci-mcasp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/davinci/davinci-mcasp.c b/sound/soc/davinci/davinci-mcasp.c
index 33cea0728cd2..d40b392b3da2 100644
--- a/sound/soc/davinci/davinci-mcasp.c
+++ b/sound/soc/davinci/davinci-mcasp.c
@@ -1058,7 +1058,7 @@ static int davinci_mcasp_suspend(struct snd_soc_dai *dai)
1058 u32 reg; 1058 u32 reg;
1059 int i; 1059 int i;
1060 1060
1061 context->pm_state = pm_runtime_enabled(mcasp->dev) 1061 context->pm_state = pm_runtime_enabled(mcasp->dev);
1062 if (!context->pm_state) 1062 if (!context->pm_state)
1063 pm_runtime_get_sync(mcasp->dev); 1063 pm_runtime_get_sync(mcasp->dev);
1064 1064