ASoC: arizona: Coding standards, remove unneeded brackets

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
Charles Keepax 2014-07-09 17:41:46 +01:00 committed by Mark Brown
parent 35a730a079
commit 613124ce64
1 changed files with 2 additions and 3 deletions

View File

@ -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;
}