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 <dan.carpenter@oracle.com> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
797f283b61
commit
15b8e94f74
1 changed files with 3 additions and 2 deletions
|
@ -317,7 +317,8 @@ static int soc_compr_trigger_fe(struct snd_compr_stream *cstream, int cmd)
|
||||||
|
|
||||||
if (platform->driver->compr_ops &&
|
if (platform->driver->compr_ops &&
|
||||||
platform->driver->compr_ops->trigger)
|
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)
|
if (cstream->direction == SND_COMPRESS_PLAYBACK)
|
||||||
|
|
Loading…
Add table
Reference in a new issue