diff options
author | Tom Rini <trini@konsulko.com> | 2024-12-27 15:16:39 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-12-27 15:16:39 -0600 |
commit | d580a013cca67a8115fb88d260498bde181709a1 (patch) | |
tree | 019afe54c586b325164e10a12149bcc74815ef78 /common/malloc_simple.c | |
parent | aa233d26bdc3eee90146f0581f7b84a97cf9e729 (diff) | |
parent | 6f1b27a724b0d75bf89cc0f8be95fc3bcb4d4fe8 (diff) |
Merge patch series "vbe: Series part E"
Simon Glass <sjg@chromium.org> says:
This includes various patches towards implementing the VBE abrec
bootmeth in U-Boot. It mostly focuses on SPL tweaks and adjusting what
fatures are available in VPL.
Link: https://lore.kernel.org/r/20241219182907.2609704-1-sjg@chromium.org
Diffstat (limited to 'common/malloc_simple.c')
-rw-r--r-- | common/malloc_simple.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/malloc_simple.c b/common/malloc_simple.c index 5a8ec538f8f..f0f90a095bd 100644 --- a/common/malloc_simple.c +++ b/common/malloc_simple.c @@ -26,7 +26,8 @@ static void *alloc_simple(size_t bytes, int align) log_debug("size=%lx, ptr=%lx, limit=%x: ", (ulong)bytes, new_ptr, gd->malloc_limit); if (new_ptr > gd->malloc_limit) { - log_err("alloc space exhausted\n"); + log_err("alloc space exhausted ptr %lx limit %x\n", new_ptr, + gd->malloc_limit); return NULL; } |