diff options
author | Andrew F. Davis | 2017-01-27 10:39:18 -0600 |
---|---|---|
committer | Tom Rini | 2017-01-28 14:04:34 -0500 |
commit | 1923d54bfc2261948448a821d284f10566fde7fe (patch) | |
tree | ed84f184aca74eb09fea447ddd953ebc057f36f6 /common/malloc_simple.c | |
parent | d9b88d2547bcea1ef17e29255fd716b6315b2aec (diff) |
malloc_simple: Add debug statements to memalign_simple
Add debug statements to memalign_simple to match malloc_simple.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common/malloc_simple.c')
-rw-r--r-- | common/malloc_simple.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/common/malloc_simple.c b/common/malloc_simple.c index 0f6bcbcc712..611400265ba 100644 --- a/common/malloc_simple.c +++ b/common/malloc_simple.c @@ -39,10 +39,14 @@ void *memalign_simple(size_t align, size_t bytes) addr = ALIGN(gd->malloc_base + gd->malloc_ptr, align); new_ptr = addr + bytes - gd->malloc_base; - if (new_ptr > gd->malloc_limit) + if (new_ptr > gd->malloc_limit) { + debug("space exhausted\n"); return NULL; + } + ptr = map_sysmem(addr, bytes); gd->malloc_ptr = ALIGN(new_ptr, sizeof(new_ptr)); + debug("%lx\n", (ulong)ptr); return ptr; } |