Newer
Older
barebox / arch / mips / boards / netgear-wg102 / ram.c
@Oleksij Rempel Oleksij Rempel on 31 May 2013 171 bytes MIPS: ar231x: add netgear-wg102
#include <common.h>
#include <init.h>
#include <sizes.h>
#include <asm/memory.h>

static int mem_init(void)
{
	mips_add_ram0(SZ_16M);
	return 0;
}
mem_initcall(mem_init);