Skip to content

Commit

Permalink
ASoC: arizona: Coding standards, remove unneeded brackets
Browse files Browse the repository at this point in the history
Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
  • Loading branch information
Charles Keepax authored and Mark Brown committed Jul 10, 2014
1 parent 35a730a commit 613124c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions sound/soc/codecs/arizona.c
Original file line number Diff line number Diff line change
Expand Up @@ -1868,11 +1868,10 @@ int arizona_set_fll(struct arizona_fll *fll, int source,
fll->sync_freq = Fref;
fll->fout = Fout;

if (Fout) {
if (Fout)
arizona_enable_fll(fll);
} else {
else
arizona_disable_fll(fll);
}

return 0;
}
Expand Down

0 comments on commit 613124c

Please sign in to comment.