From: TsiChung Liew <[EMAIL PROTECTED]>

The compiling error was caused by missing a closed parentheses
in speed.c

Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]>
---
 cpu/mcf52x2/speed.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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))
-- 
1.5.4.1


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
U-Boot-Users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/u-boot-users

Reply via email to