]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - common/malloc_simple.c
arm: spl: Allow board_init_r() to run with a larger stack
[karo-tx-uboot.git] / common / malloc_simple.c
index afdacff80d8e1fc411cba7eab59286ef28a8a1e5..64ae0365afc52f055621e2c2e6e18e9c095dc9ed 100644 (file)
@@ -19,7 +19,7 @@ void *malloc_simple(size_t bytes)
 
        new_ptr = gd->malloc_ptr + bytes;
        if (new_ptr > gd->malloc_limit)
-               panic("Out of pre-reloc memory");
+               return NULL;
        ptr = map_sysmem(gd->malloc_base + gd->malloc_ptr, bytes);
        gd->malloc_ptr = ALIGN(new_ptr, sizeof(new_ptr));
        return ptr;