xref: /openbmc/u-boot/board/amlogic/p212/p212.c (revision 15b97f5c5e6d88e0560c6928f3acd01c999a494d)
1 /*
2  * Copyright (C) 2016 BayLibre, SAS
3  * Author: Neil Armstrong <narmstrong@baylibre.com>
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 #include <common.h>
9 #include <dm.h>
10 #include <asm/io.h>
11 #include <asm/arch/gxbb.h>
12 
13 int board_init(void)
14 {
15 	return 0;
16 }
17 
18 int misc_init_r(void)
19 {
20        return 0;
21 }
22