summaryrefslogtreecommitdiff
path: root/common/malloc_simple.c
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2024-12-12 21:07:26 -0600
committerTom Rini <[email protected]>2024-12-12 21:07:26 -0600
commita33185173dce550d6ecb96b7fa625bb5e2183d66 (patch)
treeadd17fdeadcdddc9eb7922c7c09486027812df40 /common/malloc_simple.c
parent1fdf53ace13f745fe8ad4d2d4e79eed98088d555 (diff)
Revert "Merge patch series "vbe: Series part E""
This reverts commit 1fdf53ace13f745fe8ad4d2d4e79eed98088d555, reversing changes made to e5aef1bbf11412eebd4c242b46adff5301353c30. I had missed that this caused too much size growth on rcar3_salvator-x. Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'common/malloc_simple.c')
-rw-r--r--common/malloc_simple.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/malloc_simple.c b/common/malloc_simple.c
index f0f90a095bd..5a8ec538f8f 100644
--- a/common/malloc_simple.c
+++ b/common/malloc_simple.c
@@ -26,8 +26,7 @@ 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 ptr %lx limit %x\n", new_ptr,
- gd->malloc_limit);
+ log_err("alloc space exhausted\n");
return NULL;
}