diff options
author | TsiChung Liew <Tsi-Chung.Liew@freescale.com> | 2008-06-19 00:19:07 (GMT) |
---|---|---|
committer | John Rigby <jrigby@freescale.com> | 2008-07-11 16:45:58 (GMT) |
commit | dd08e97361fbc9e79fa5ef1a8acf29273b934b11 (patch) | |
tree | f79e4781c69354173d4f4884474c50ac6eea2fa4 /cpu/mcf52x2/speed.c | |
parent | 94603c2fd4dbe0655878416aa0da9f302d4c30d3 (diff) | |
download | u-boot-fsl-qoriq-dd08e97361fbc9e79fa5ef1a8acf29273b934b11.tar.xz |
ColdFire: Fix compiling error for MCF5275
The compiling error was caused by missing a closed parentheses
in speed.c
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
Diffstat (limited to 'cpu/mcf52x2/speed.c')
-rw-r--r-- | 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)) |