diff options
author | wdenk | 2004-01-31 20:06:54 +0000 |
---|---|---|
committer | wdenk | 2004-01-31 20:06:54 +0000 |
commit | 75d1ea7f6aa00c280c495a1ff6502f091c4244fe (patch) | |
tree | bb1ee058f8886ae42cb85a6b2c82f3d6b18661bf /board | |
parent | 6876609446980c3055bbd32c195a63330e21d8e6 (diff) |
Fix variable CPU clock for MPC859/866 systems for low CPU clocks
Diffstat (limited to 'board')
-rw-r--r-- | board/tqm8xx/tqm8xx.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/board/tqm8xx/tqm8xx.c b/board/tqm8xx/tqm8xx.c index 8cc86fcaf02..9e9cbd3dfbb 100644 --- a/board/tqm8xx/tqm8xx.c +++ b/board/tqm8xx/tqm8xx.c @@ -128,14 +128,6 @@ int checkboard (void) break; putc (*s); } -#if defined(CFG_866_CPUCLK_MIN) && defined(CFG_866_CPUCLK_MAX) - printf (" [%d.%d...%d.%d MHz]", - CFG_866_CPUCLK_MIN / 1000000, - ((CFG_866_CPUCLK_MIN % 1000000) + 50000) / 100000, - CFG_866_CPUCLK_MAX / 1000000, - ((CFG_866_CPUCLK_MAX % 1000000) + 50000) / 100000 - ); -#endif putc ('\n'); return (0); |