diff options
| author | Becky Bruce <beckyb@kernel.crashing.org> | 2010-12-17 17:17:59 -0600 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2011-01-14 01:32:19 -0600 | 
| commit | 7ea3871e06c421a44e7286792610dc00992070e6 (patch) | |
| tree | 32d8dcd79877b18b43d5961da1db072eeece6aa0 /arch/powerpc/cpu/mpc8xxx/ddr/main.c | |
| parent | 810c44274980d8bb9fa0d81d091a374adbae8309 (diff) | |
| download | olio-uboot-2014.01-7ea3871e06c421a44e7286792610dc00992070e6.tar.xz olio-uboot-2014.01-7ea3871e06c421a44e7286792610dc00992070e6.zip | |
MPC8xxx DDR: align informational prints
Add spaces to cause the informational prints to line up with
the ones from init_func_ram() in board.c.  Output now looks like
this:
....
DRAM:  Detected 4096 MB of memory
       This U-Boot only supports < 4G of DDR
       You could rebuild it with CONFIG_PHYS_64BIT
       DDR: 2 GiB (DDR2, 64-bit, CL=5, ECC off)
....
The prints from lbc_sdram_init() have also been modified to line
line up and changed to start with "LBC SDRAM" instead of the
confusing "SDRAM".
Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/cpu/mpc8xxx/ddr/main.c')
| -rw-r--r-- | arch/powerpc/cpu/mpc8xxx/ddr/main.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/arch/powerpc/cpu/mpc8xxx/ddr/main.c b/arch/powerpc/cpu/mpc8xxx/ddr/main.c index 6d582e97d..e3888ff6e 100644 --- a/arch/powerpc/cpu/mpc8xxx/ddr/main.c +++ b/arch/powerpc/cpu/mpc8xxx/ddr/main.c @@ -469,8 +469,9 @@ phys_size_t fsl_ddr_sdram(void)  	/* Check for 4G or more.  Bad. */  	if (total_memory >= (1ull << 32)) {  		printf("Detected %lld MB of memory\n", total_memory >> 20); -		printf("This U-Boot only supports < 4G of DDR\n"); -		printf("You could rebuild it with CONFIG_PHYS_64BIT\n"); +		printf("       This U-Boot only supports < 4G of DDR\n"); +		printf("       You could rebuild it with CONFIG_PHYS_64BIT\n"); +		printf("       "); /* re-align to match init_func_ram print */  		total_memory = CONFIG_MAX_MEM_MAPPED;  	}  #endif |