From: TsiChung Liew Date: Thu, 19 Jun 2008 00:19:07 +0000 (-0500) Subject: ColdFire: Fix compiling error for MCF5275 X-Git-Tag: v2008.10-rc1~194^2~17^2^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dd08e97361fbc9e79fa5ef1a8acf29273b934b11;p=platform%2Fkernel%2Fu-boot.git ColdFire: Fix compiling error for MCF5275 The compiling error was caused by missing a closed parentheses in speed.c Signed-off-by: TsiChung Liew --- diff --git a/cpu/mcf52x2/speed.c b/cpu/mcf52x2/speed.c index 5fafcd8..f6edd5b 100644 --- a/cpu/mcf52x2/speed.c +++ b/cpu/mcf52x2/speed.c @@ -69,7 +69,7 @@ int get_clocks (void) /* Setup PLL */ pll->syncr = 0x01080000; - while (!(pll->synsr & FMPLL_SYNSR_LOCK) + while (!(pll->synsr & FMPLL_SYNSR_LOCK)) ; pll->syncr = 0x01000000; while (!(pll->synsr & FMPLL_SYNSR_LOCK))