]> git.sur5r.net Git - u-boot/commitdiff
ColdFire: Fix compiling error for MCF5275
authorTsiChung Liew <Tsi-Chung.Liew@freescale.com>
Thu, 19 Jun 2008 00:19:07 +0000 (19:19 -0500)
committerJohn Rigby <jrigby@freescale.com>
Fri, 11 Jul 2008 16:45:58 +0000 (10:45 -0600)
The compiling error was caused by missing a closed parentheses
in speed.c

Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
cpu/mcf52x2/speed.c

index 5fafcd8c5f90eaf7748d07efd5685fa686ba2dee..f6edd5b6fa81fa2bdaa6946bfc34567f91ecb1fc 100644 (file)
@@ -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))