Skip to content
Snippets Groups Projects
Commit dd08e973 authored by TsiChung Liew's avatar TsiChung Liew Committed by John Rigby
Browse files

ColdFire: Fix compiling error for MCF5275


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

Signed-off-by: default avatarTsiChung Liew <Tsi-Chung.Liew@freescale.com>
parent 94603c2f
No related branches found
No related tags found
No related merge requests found
...@@ -69,7 +69,7 @@ int get_clocks (void) ...@@ -69,7 +69,7 @@ int get_clocks (void)
/* Setup PLL */ /* Setup PLL */
pll->syncr = 0x01080000; pll->syncr = 0x01080000;
while (!(pll->synsr & FMPLL_SYNSR_LOCK) while (!(pll->synsr & FMPLL_SYNSR_LOCK))
; ;
pll->syncr = 0x01000000; pll->syncr = 0x01000000;
while (!(pll->synsr & FMPLL_SYNSR_LOCK)) while (!(pll->synsr & FMPLL_SYNSR_LOCK))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment