summaryrefslogtreecommitdiffstats
path: root/arch/arm/lib/arm.c
blob: adfc4d2dd718cbed747059147b6f3bee23b9a27d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <common.h>
#include <init.h>
#include <mem_malloc.h>

int arm_mem_malloc_init(void)
{
	mem_malloc_init(_armboot_start - CFG_MALLOC_LEN,
			_armboot_start);
	return 0;
}

core_initcall(arm_mem_malloc_init);