diff mbox

ASoC: davinci-mcasp: add missing semicolon

Message ID 10196569.gafhWQrdaI@wuerfel (mailing list archive)
State New, archived
Headers show

Commit Message

Arnd Bergmann March 8, 2015, 9:10 p.m. UTC
A recent patch introduced a build error because of a trivial typo, this
gets it back to compile.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 6afda7f50754 ("ASoC: davinci-mcasp: Allow complete shutdown of McASP when not in use")
---
I'm guessing this was reported already, but if not, please apply this patch.

Comments

Mark Brown March 8, 2015, 10:21 p.m. UTC | #1
On Sun, Mar 08, 2015 at 10:10:14PM +0100, Arnd Bergmann wrote:
> A recent patch introduced a build error because of a trivial typo, this
> gets it back to compile.
> 
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Fixes: 6afda7f50754 ("ASoC: davinci-mcasp: Allow complete shutdown of McASP when not in use")

The same fix was sent several days ago, please submit against current
code.
diff mbox

Patch

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)
 	u32 reg;
 	int i;
 
-	context->pm_state = pm_runtime_enabled(mcasp->dev)
+	context->pm_state = pm_runtime_enabled(mcasp->dev);
 	if (!context->pm_state)
 		pm_runtime_get_sync(mcasp->dev);