diff options
author | wdenk <wdenk> | 2005-03-15 22:56:53 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-03-15 22:56:53 +0000 |
commit | 6c9e789e9e47de6146efefa48224b085501bc094 (patch) | |
tree | 00649fee2880baba1c18f926c1dc8e3c085ee126 /cpu/mpc85xx/cpu_init.c | |
parent | 911d08f6ae244c6407fff268585e5b9544ce8adb (diff) | |
download | u-boot-imx-6c9e789e9e47de6146efefa48224b085501bc094.zip u-boot-imx-6c9e789e9e47de6146efefa48224b085501bc094.tar.gz u-boot-imx-6c9e789e9e47de6146efefa48224b085501bc094.tar.bz2 |
Update code for TQM8540 board (and 85xx in general):
- Change the name of the Ethernet driver: MOTO ENET -> ENET
- Reformat boot messages
- Enable redundant environment
- Replace the -O2 optimization flag with -mno-string
Diffstat (limited to 'cpu/mpc85xx/cpu_init.c')
-rw-r--r-- | cpu/mpc85xx/cpu_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mpc85xx/cpu_init.c b/cpu/mpc85xx/cpu_init.c index 3ffd558..ee2f79f 100644 --- a/cpu/mpc85xx/cpu_init.c +++ b/cpu/mpc85xx/cpu_init.c @@ -196,9 +196,9 @@ int cpu_init_r (void) temp = l2cache->l2ctl; asm("msync;isync"); - printf("L2 cache enabled: 256KB\n"); + printf("L2: 256 kB enabled\n"); #else - printf("L2 cache disabled.\n"); + printf("L2: disabled.\n"); #endif return 0; |