Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 15b8e94f authored by Dan Carpenter's avatar Dan Carpenter Committed by Mark Brown
Browse files

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: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 797f283b
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -317,7 +317,8 @@ static int soc_compr_trigger_fe(struct snd_compr_stream *cstream, int cmd)

		if (platform->driver->compr_ops &&
		    platform->driver->compr_ops->trigger)
		return platform->driver->compr_ops->trigger(cstream, cmd);
			return platform->driver->compr_ops->trigger(cstream,
								    cmd);
	}

	if (cstream->direction == SND_COMPRESS_PLAYBACK)