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