summaryrefslogtreecommitdiff
path: root/board/amlogic/p212/p212.c
blob: 1eeb7f26d8874fcc1ca86d963bb0469b6f24994e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (C) 2016 BayLibre, SAS
 * Author: Neil Armstrong <narmstrong@baylibre.com>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <dm.h>
#include <asm/io.h>
#include <asm/arch/gxbb.h>

int board_init(void)
{
	return 0;
}

int misc_init_r(void)
{
       return 0;
}