xref: /openbmc/u-boot/board/rockchip/sheep_rk3368/sheep_rk3368.c (revision d024236e5a31a2b4b82cbcc98b31b8170fc88d28)
1 /*
2  * Copyright (c) 2017 Andy Yan
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 #include <common.h>
7 #include <asm/io.h>
8 #include <asm/arch/clock.h>
9 #include <asm/arch/grf_rk3368.h>
10 #include <syscon.h>
11 
12 int mach_cpu_init(void)
13 {
14 	return 0;
15 }
16 
17 int board_init(void)
18 {
19 	return 0;
20 }
21