summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorwdenk <wdenk>2005-03-15 22:56:53 +0000
committerwdenk <wdenk>2005-03-15 22:56:53 +0000
commit6c9e789e9e47de6146efefa48224b085501bc094 (patch)
tree00649fee2880baba1c18f926c1dc8e3c085ee126 /board
parent911d08f6ae244c6407fff268585e5b9544ce8adb (diff)
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.c7
1 files changed, 2 insertions, 5 deletions
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;
}