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