blob: ba7c02bd7e874c23cb89691840f6ea17ec6c08bd [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ben Stoltz3dcdd172015-08-04 12:33:46 -06002/*
3 * Copyright (c) 2015 Google, Inc
Ben Stoltz3dcdd172015-08-04 12:33:46 -06004 */
5
6#include <common.h>
7#include <fdtdec.h>
8#include <netdev.h>
9
10int arch_cpu_init(void)
11{
Bin Meng01020232018-06-12 08:36:25 -070012 return x86_cpu_init_f();
Ben Stoltz3dcdd172015-08-04 12:33:46 -060013}
14
Simon Glass76d1d022017-03-28 10:27:30 -060015int checkcpu(void)
16{
17 return 0;
18}
19
Ben Stoltz3dcdd172015-08-04 12:33:46 -060020int print_cpuinfo(void)
21{
22 return default_print_cpuinfo();
23}
24
25void board_final_cleanup(void)
26{
27}
28
29int misc_init_r(void)
30{
31 return 0;
32}