From 6c9e789e9e47de6146efefa48224b085501bc094 Mon Sep 17 00:00:00 2001 From: wdenk Date: Tue, 15 Mar 2005 22:56:53 +0000 Subject: 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 --- board/tqm8540/tqm8540.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'board') diff --git a/board/tqm8540/tqm8540.c b/board/tqm8540/tqm8540.c index 8e25081aef..ee10d00427 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; } -- cgit