ASoC: Tegra: Harmony: Fix indentation issue.

Indent with TABs not spaces.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
Stephen Warren 2011-01-28 14:26:38 -07:00 committed by Mark Brown
parent 6e26764504
commit bc72fe0c0e
1 changed files with 6 additions and 5 deletions

View File

@ -104,11 +104,12 @@ static int harmony_asoc_hw_params(struct snd_pcm_substream *substream,
} }
if (mclk_change) { if (mclk_change) {
err = snd_soc_dai_set_sysclk(codec_dai, 0, mclk, SND_SOC_CLOCK_IN); err = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
if (err < 0) { SND_SOC_CLOCK_IN);
pr_err(PREFIX "codec_dai clock not set\n"); if (err < 0) {
return err; pr_err(PREFIX "codec_dai clock not set\n");
} return err;
}
} }
return 0; return 0;