blob: 6549118b83a3af336c8316fa5f9fb36b4fa0ddf6 [file] [log] [blame]
#include <common.h>
#include <init.h>
#include <mem_malloc.h>
#include <asm/barebox-arm.h>
#include <asm-generic/memory_layout.h>
static int arm_mem_malloc_init(void)
{
mem_malloc_init((void *)MALLOC_BASE,
(void *)(MALLOC_BASE + MALLOC_SIZE));
return 0;
}
core_initcall(arm_mem_malloc_init);