diff options
| author | Tom Rini <[email protected]> | 2024-12-12 16:35:47 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-12-12 16:35:47 -0600 |
| commit | 1fdf53ace13f745fe8ad4d2d4e79eed98088d555 (patch) | |
| tree | 94f48a0eb15db6ce3da3953ae4e6d98623d6edae /common/malloc_simple.c | |
| parent | e5aef1bbf11412eebd4c242b46adff5301353c30 (diff) | |
| parent | f0315babfb43c6d1f5d4ff0ea7554ec2c27bf7b1 (diff) | |
Merge patch series "vbe: Series part E"
Simon Glass <[email protected]> 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/[email protected]
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; } |
