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

Commit dbab288b authored by Samuel Ortiz's avatar Samuel Ortiz Committed by Tony Lindgren
Browse files

ARM: OMAP: Fix OMAP2 clock.c typo



A forgotten parenthesis in clock.c caused the PLL stabilization loop
to not be executed correctly.

Signed-off-by: default avatarSamuel Ortiz <samuel.ortiz@solidboot.com>
Signed-off-by: default avatarJuha Yrjola <juha.yrjola@solidboot.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent fa4bb626
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -103,7 +103,7 @@ static void omap2_clk_fixed_enable(struct clk *clk)
	else if (clk == &apll54_ck)
		cval = (1 << 6);

	while (!CM_IDLEST_CKGEN & cval) {		/* Wait for lock */
	while (!(CM_IDLEST_CKGEN & cval)) {		/* Wait for lock */
		++i;
		udelay(1);
		if (i == 100000)