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 /board | |
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 'board')
-rw-r--r-- | board/tqm8540/tqm8540.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/board/tqm8540/tqm8540.c b/board/tqm8540/tqm8540.c index 8e25081..ee10d00 100644 --- a/board/tqm8540/tqm8540.c +++ b/board/tqm8540/tqm8540.c @@ -52,10 +52,10 @@ int checkboard (void) puts ("Board: TQM8540\n"); #ifdef CONFIG_PCI - printf (" PCI1: 32 bit, %d MHz (compiled)\n", + printf ("PCI1: 32 bit, %d MHz (compiled)\n", CONFIG_SYS_CLK_FREQ / 1000000); #else - printf (" PCI1: disabled\n"); + printf ("PCI1: disabled\n"); #endif /* * Initialize local bus. @@ -72,8 +72,6 @@ long int initdram (int board_type) extern long spd_sdram (void); volatile immap_t *immap = (immap_t *) CFG_IMMR; - puts ("Initializing\n"); - #if defined(CONFIG_DDR_DLL) { volatile ccsr_gur_t *gur = &immap->im_gur; @@ -101,7 +99,6 @@ long int initdram (int board_type) ddr_enable_ecc (dram_size); #endif - puts (" DDR: "); return dram_size; } |