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:
parent
35a730a079
commit
613124ce64
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue