diff options
| author | Tom Rini <trini@ti.com> | 2013-08-21 16:27:47 -0400 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-08-21 16:27:47 -0400 | 
| commit | 6612ab33956ae09c5ba2fde9c1540b519625ba37 (patch) | |
| tree | b6da2e20793336cf0eed44292edb3b5e7ce88819 /arch/powerpc/cpu/mpc8xxx/ddr/main.c | |
| parent | 3fb858891273945ce2238e6d4dac3363a1fb0853 (diff) | |
| parent | b6df9b01fb8c126b212aba92b6523407d3fa60a5 (diff) | |
| download | olio-uboot-2014.01-6612ab33956ae09c5ba2fde9c1540b519625ba37.tar.xz olio-uboot-2014.01-6612ab33956ae09c5ba2fde9c1540b519625ba37.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
Diffstat (limited to 'arch/powerpc/cpu/mpc8xxx/ddr/main.c')
| -rw-r--r-- | arch/powerpc/cpu/mpc8xxx/ddr/main.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/arch/powerpc/cpu/mpc8xxx/ddr/main.c b/arch/powerpc/cpu/mpc8xxx/ddr/main.c index 9f4f25343..842bf1989 100644 --- a/arch/powerpc/cpu/mpc8xxx/ddr/main.c +++ b/arch/powerpc/cpu/mpc8xxx/ddr/main.c @@ -683,7 +683,8 @@ phys_size_t fsl_ddr_sdram(void)  #if !defined(CONFIG_PHYS_64BIT)  	/* Check for 4G or more.  Bad. */  	if (total_memory >= (1ull << 32)) { -		printf("Detected %lld MB of memory\n", total_memory >> 20); +		puts("Detected "); +		print_size(total_memory, " of memory\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 */ |