From: Dan Carpenter Date: Wed, 14 May 2014 14:23:08 +0000 (+0300) Subject: ASoC: compress: indent an if statement X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=15b8e94f7460a1285766555011a0feb68e618ecb;p=deliverable%2Flinux.git ASoC: compress: indent an if statement The return statement was not indented correctly. I lined up the condition a bit as well. Signed-off-by: Dan Carpenter Signed-off-by: Mark Brown --- diff --git a/sound/soc/soc-compress.c b/sound/soc/soc-compress.c index 5320e8664a59..10f7f1da2aca 100644 --- a/sound/soc/soc-compress.c +++ b/sound/soc/soc-compress.c @@ -316,8 +316,9 @@ static int soc_compr_trigger_fe(struct snd_compr_stream *cstream, int cmd) cmd == SND_COMPR_TRIGGER_DRAIN) { if (platform->driver->compr_ops && - platform->driver->compr_ops->trigger) - return platform->driver->compr_ops->trigger(cstream, cmd); + platform->driver->compr_ops->trigger) + return platform->driver->compr_ops->trigger(cstream, + cmd); } if (cstream->direction == SND_COMPRESS_PLAYBACK)