diff options
author | Wolfgang Denk <wd@denx.de> | 2011-07-25 10:13:53 +0200 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2011-07-29 08:53:39 -0500 |
commit | 21cd5815a7e956e689ac78be2ade05e61fd5dce7 (patch) | |
tree | 6ba767d3f422371a41d54b84d52f1ec6e7ea9e04 /arch/powerpc | |
parent | 74d9d5239f5eb5ae6b6ed92d13db304d4bd2f699 (diff) | |
download | u-boot-imx-21cd5815a7e956e689ac78be2ade05e61fd5dce7.zip u-boot-imx-21cd5815a7e956e689ac78be2ade05e61fd5dce7.tar.gz u-boot-imx-21cd5815a7e956e689ac78be2ade05e61fd5dce7.tar.bz2 |
MPC8xxx: drop redundant boot messages
Current code would print RAM size information like this:
DRAM: DDR: 256 MiB (DDR1, 64-bit, CL=2, ECC off)
Turn a number of printf()s into debug() to get rid of the redundant
"DDR: " string like this:
DRAM: 256 MiB (DDR1, 64-bit, CL=2, ECC off)
Signed-off-by: Wolfgang Denk <wd@denx.de>
Acked-by: York Sun <yorksun@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/cpu.c b/arch/powerpc/cpu/mpc85xx/cpu.c index 976e86e..22fa461 100644 --- a/arch/powerpc/cpu/mpc85xx/cpu.c +++ b/arch/powerpc/cpu/mpc85xx/cpu.c @@ -352,7 +352,7 @@ phys_size_t initdram(int board_type) lbc_sdram_init(); #endif - puts("DDR: "); + debug("DDR: "); return dram_size; } #endif /* CONFIG_SYS_RAMBOOT */ |