]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ASoC: compress: indent an if statement
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 14 May 2014 14:23:08 +0000 (17:23 +0300)
committerMark Brown <broonie@linaro.org>
Wed, 14 May 2014 15:15:03 +0000 (16:15 +0100)
The return statement was not indented correctly.  I lined up the
condition a bit as well.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/soc-compress.c

index 5320e8664a59f5ddb767092e134ea33af55594ca..10f7f1da2acaf3e192f0b6b1ed519483c4a60dd0 100644 (file)
@@ -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)