From: Samuel Ortiz Date: Thu, 17 Aug 2006 17:41:45 +0000 (+0300) Subject: ARM: OMAP: Fix OMAP2 clock.c typo X-Git-Tag: v2.6.18-omap1~105 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=6f83475751c029803f7c4b449e7a4c53bcf8f1d4;p=linux-2.6-omap-h63xx.git 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: Samuel Ortiz Signed-off-by: Juha Yrjola --- diff --git a/arch/arm/mach-omap2/clock.c b/arch/arm/mach-omap2/clock.c index a72afac9797..94e5bc07644 100644 --- a/arch/arm/mach-omap2/clock.c +++ b/arch/arm/mach-omap2/clock.c @@ -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)