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>
This commit is contained in:
Wolfgang Denk
2011-07-25 10:13:53 +02:00
committed by Kumar Gala
parent 74d9d5239f
commit 21cd5815a7
6 changed files with 6 additions and 6 deletions

View File

@@ -63,7 +63,7 @@ phys_size_t initdram (int board_type)
dram_size = fixed_sdram ();
#endif
puts (" DDR: ");
debug (" DDR: ");
return dram_size;
}