summaryrefslogtreecommitdiffstats
path: root/arch/arm/lib/arm.c
blob: 6549118b83a3af336c8316fa5f9fb36b4fa0ddf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);