diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2015-03-06 09:07:32 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-03-06 10:30:15 +0000 |
commit | 66e618857ca46433741bf97ceca1b425387400b1 (patch) | |
tree | 6a236ef4cc8be6aecb69118a2222d8b3fcb36177 /sound/soc/davinci | |
parent | 6afda7f5075440f6737d953ab00fc82efb6cabae (diff) | |
download | talos-obmc-linux-66e618857ca46433741bf97ceca1b425387400b1.tar.gz talos-obmc-linux-66e618857ca46433741bf97ceca1b425387400b1.zip |
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>
Diffstat (limited to 'sound/soc/davinci')
-rw-r--r-- | sound/soc/davinci/davinci-mcasp.c | 2 |
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) 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); |