blob: 741613f6155256b0f2810d45f2cba04252260ec6 [file] [log] [blame]
Ben Stoltz3dcdd172015-08-04 12:33:46 -06001/*
2 * Copyright (c) 2015 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <fdtdec.h>
9#include <netdev.h>
10
11int arch_cpu_init(void)
12{
Ben Stoltz3dcdd172015-08-04 12:33:46 -060013 return 0;
14}
15
16int board_early_init_f(void)
17{
18 return 0;
19}
20
Simon Glass76d1d022017-03-28 10:27:30 -060021int checkcpu(void)
22{
23 return 0;
24}
25
Ben Stoltz3dcdd172015-08-04 12:33:46 -060026int print_cpuinfo(void)
27{
28 return default_print_cpuinfo();
29}
30
31void board_final_cleanup(void)
32{
33}
34
35int misc_init_r(void)
36{
37 return 0;
38}
39
40int arch_misc_init(void)
41{
42 return 0;
43}