xref: /rk3399_rockchip-uboot/arch/x86/cpu/efi/efi.c (revision 07d778382200a05a8b86cc135f79ec48e386f25a)
13dcdd17bSBen Stoltz /*
23dcdd17bSBen Stoltz  * Copyright (c) 2015 Google, Inc
33dcdd17bSBen Stoltz  *
43dcdd17bSBen Stoltz  * SPDX-License-Identifier:	GPL-2.0+
53dcdd17bSBen Stoltz  */
63dcdd17bSBen Stoltz 
73dcdd17bSBen Stoltz #include <common.h>
83dcdd17bSBen Stoltz #include <fdtdec.h>
93dcdd17bSBen Stoltz #include <netdev.h>
103dcdd17bSBen Stoltz 
arch_cpu_init(void)113dcdd17bSBen Stoltz int arch_cpu_init(void)
123dcdd17bSBen Stoltz {
133dcdd17bSBen Stoltz 	return 0;
143dcdd17bSBen Stoltz }
153dcdd17bSBen Stoltz 
checkcpu(void)16*76d1d02fSSimon Glass int checkcpu(void)
17*76d1d02fSSimon Glass {
18*76d1d02fSSimon Glass 	return 0;
19*76d1d02fSSimon Glass }
20*76d1d02fSSimon Glass 
print_cpuinfo(void)213dcdd17bSBen Stoltz int print_cpuinfo(void)
223dcdd17bSBen Stoltz {
233dcdd17bSBen Stoltz 	return default_print_cpuinfo();
243dcdd17bSBen Stoltz }
253dcdd17bSBen Stoltz 
board_final_cleanup(void)263dcdd17bSBen Stoltz void board_final_cleanup(void)
273dcdd17bSBen Stoltz {
283dcdd17bSBen Stoltz }
293dcdd17bSBen Stoltz 
misc_init_r(void)303dcdd17bSBen Stoltz int misc_init_r(void)
313dcdd17bSBen Stoltz {
323dcdd17bSBen Stoltz 	return 0;
333dcdd17bSBen Stoltz }
34