Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 613124ce authored by Charles Keepax's avatar Charles Keepax Committed by Mark Brown
Browse files

ASoC: arizona: Coding standards, remove unneeded brackets

parent 35a730a0
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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;
}