diff options
author | Andrew F. Davis <afd@ti.com> | 2017-01-27 16:39:18 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-01-28 19:04:34 (GMT) |
commit | 1923d54bfc2261948448a821d284f10566fde7fe (patch) | |
tree | ed84f184aca74eb09fea447ddd953ebc057f36f6 | |
parent | d9b88d2547bcea1ef17e29255fd716b6315b2aec (diff) | |
download | u-boot-fsl-qoriq-1923d54bfc2261948448a821d284f10566fde7fe.tar.xz |
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>
-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 0f6bcbc..6114002 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; } |