diff options
author | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> | 2013-01-24 04:44:28 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-01-24 05:53:18 -0500 |
commit | 8c3d2aa4cfeaba66be68ef8c351b2e099e50c25b (patch) | |
tree | 28e3477056f5fc7e86982aca5f5954a96e933dc9 /sound | |
parent | 7d1f9aeff1ee4a20b1aeb377dd0f579fe9647619 (diff) |
ASoC: soc-compress: Add missing brackets around else
Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Acked-by: Vinod Koul <vinod.koul@intel.com>
Tested-by: Jeeja KP <jeeja.kp@intel.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/soc-compress.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/soc-compress.c b/sound/soc/soc-compress.c index 5fbfb06e8083..80040f03b021 100644 --- a/sound/soc/soc-compress.c +++ b/sound/soc/soc-compress.c | |||
@@ -112,10 +112,11 @@ static int soc_compr_free(struct snd_compr_stream *cstream) | |||
112 | snd_soc_dapm_stream_event(rtd, | 112 | snd_soc_dapm_stream_event(rtd, |
113 | SNDRV_PCM_STREAM_PLAYBACK, | 113 | SNDRV_PCM_STREAM_PLAYBACK, |
114 | SND_SOC_DAPM_STREAM_STOP); | 114 | SND_SOC_DAPM_STREAM_STOP); |
115 | } else | 115 | } else { |
116 | rtd->pop_wait = 1; | 116 | rtd->pop_wait = 1; |
117 | schedule_delayed_work(&rtd->delayed_work, | 117 | schedule_delayed_work(&rtd->delayed_work, |
118 | msecs_to_jiffies(rtd->pmdown_time)); | 118 | msecs_to_jiffies(rtd->pmdown_time)); |
119 | } | ||
119 | } else { | 120 | } else { |
120 | /* capture streams can be powered down now */ | 121 | /* capture streams can be powered down now */ |
121 | snd_soc_dapm_stream_event(rtd, | 122 | snd_soc_dapm_stream_event(rtd, |