]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
meminfo cmd: Enable printing >=4GiB SDRAM sizes
authorAndrew Bradford <andrew.bradford@kodakalaris.com>
Fri, 22 May 2015 12:30:14 +0000 (08:30 -0400)
committerTom Rini <trini@konsulko.com>
Thu, 28 May 2015 12:18:21 +0000 (08:18 -0400)
commitea11b401b5ca10b5991e7c65832cfb7db54996c1
tree01703e6963a3205b9abec0c9d69e3cd7af2c18e1
parent3bc37b6d65c856a90ad7389b7a216f5a83164f83
meminfo cmd: Enable printing >=4GiB SDRAM sizes

gd->ram_size is stored as phys_size_t type which can be bigger than an
unsigned long on some architectures.  When using unsigned long type,
SDRAM of 4GiB or larger will not print the correct size, but using
phys_size_t will.

Signed-off-by: Andrew Bradford <andrew.bradford@kodakalaris.com>
common/cmd_mem.c
include/common.h