diff options
author | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> | 2014-07-09 12:41:46 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-07-10 06:09:15 -0400 |
commit | 613124ce644c38857ef5780a96e6d400d6b11abd (patch) | |
tree | 082fd483627188a07a8fad87e39f6af75408fe6f | |
parent | 35a730a0790b2a6535e0b4a964c6a8b2d27fa019 (diff) |
ASoC: arizona: Coding standards, remove unneeded brackets
Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | sound/soc/codecs/arizona.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sound/soc/codecs/arizona.c b/sound/soc/codecs/arizona.c index 6084af76f337..0a417e8bcadd 100644 --- a/sound/soc/codecs/arizona.c +++ b/sound/soc/codecs/arizona.c | |||
@@ -1868,11 +1868,10 @@ int arizona_set_fll(struct arizona_fll *fll, int source, | |||
1868 | fll->sync_freq = Fref; | 1868 | fll->sync_freq = Fref; |
1869 | fll->fout = Fout; | 1869 | fll->fout = Fout; |
1870 | 1870 | ||
1871 | if (Fout) { | 1871 | if (Fout) |
1872 | arizona_enable_fll(fll); | 1872 | arizona_enable_fll(fll); |
1873 | } else { | 1873 | else |
1874 | arizona_disable_fll(fll); | 1874 | arizona_disable_fll(fll); |
1875 | } | ||
1876 | 1875 | ||
1877 | return 0; | 1876 | return 0; |
1878 | } | 1877 | } |