diff options
author | Tien Fong Chee | 2018-06-20 15:06:20 +0800 |
---|---|---|
committer | Tom Rini | 2018-07-10 16:55:59 -0400 |
commit | 67a2616af18bbb38905b90ed1c6b66659671e1da (patch) | |
tree | 2ad9c7398b3ad9d7a8499754bfcbb98e2415d69e /common | |
parent | 0fd2290cfc3b5c907783772ded82a8dfad4eb0e8 (diff) |
common/memsize.c: Increase save array for supporting memory size > 4GB
In ARM 64-bits, memory size can be supported is more than 4GB,
hence increasing save array is needed to cope with testing larger memory.
Signed-off-by: Tien Fong Chee <tien.fong.chee@intel.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/memsize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/memsize.c b/common/memsize.c index 5670e951371..13b00477866 100644 --- a/common/memsize.c +++ b/common/memsize.c @@ -26,7 +26,7 @@ DECLARE_GLOBAL_DATA_PTR; long get_ram_size(long *base, long maxsize) { volatile long *addr; - long save[31]; + long save[BITS_PER_LONG - 1]; long save_base; long cnt; long val; |