Park, Aiden | 6e3cc36 | 2019-08-03 08:30:12 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
2 | /* | ||||
3 | * Copyright (C) 2019 Intel Corporation <www.intel.com> | ||||
4 | */ | ||||
5 | |||||
6 | #include <common.h> | ||||
7 | |||||
8 | int arch_cpu_init(void) | ||||
9 | { | ||||
10 | return x86_cpu_init_f(); | ||||
11 | } | ||||
12 | |||||
13 | int checkcpu(void) | ||||
14 | { | ||||
15 | return 0; | ||||
16 | } | ||||
17 | |||||
18 | int print_cpuinfo(void) | ||||
19 | { | ||||
20 | return default_print_cpuinfo(); | ||||
21 | } |