diff options
author | Wolfgang Denk <wd@denx.de> | 2007-12-27 02:01:15 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-12-27 02:01:15 +0100 |
commit | 0dcfe3a225a9436fc514f374a19242c672f1172b (patch) | |
tree | 7ac3f382538d8919e475c6eaed25abb1af71e005 /cpu | |
parent | 61fb15c516fef5631e305f1976d7b3a679725856 (diff) | |
parent | 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994 (diff) | |
download | u-boot-0dcfe3a225a9436fc514f374a19242c672f1172b.tar.gz u-boot-0dcfe3a225a9436fc514f374a19242c672f1172b.tar.xz u-boot-0dcfe3a225a9436fc514f374a19242c672f1172b.zip |
Merge branch 'master' of /home/wd/git/u-boot/custodians
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mpc8xx/speed.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cpu/mpc8xx/speed.c b/cpu/mpc8xx/speed.c index 101d5f9cb3..11b089330b 100644 --- a/cpu/mpc8xx/speed.c +++ b/cpu/mpc8xx/speed.c @@ -259,11 +259,8 @@ int get_clocks_866 (void) */ sccr_reg = immr->im_clkrst.car_sccr; sccr_reg &= ~SCCR_EBDF11; -#if defined(CONFIG_TQM885D) - if (gd->cpu_clk <= 80000000) { -#else + if (gd->cpu_clk <= 66000000) { -#endif sccr_reg |= SCCR_EBDF00; /* bus division factor = 1 */ gd->bus_clk = gd->cpu_clk; } else { |