summaryrefslogtreecommitdiff
path: root/arch/x86/cpu/efi/efi.c
blob: d82147be47b7d54e035314e9ebc8f75308756db9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * Copyright (c) 2015 Google, Inc
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <fdtdec.h>
#include <netdev.h>

int arch_cpu_init(void)
{
	return 0;
}

int checkcpu(void)
{
	return 0;
}

int print_cpuinfo(void)
{
	return default_print_cpuinfo();
}

void board_final_cleanup(void)
{
}

int misc_init_r(void)
{
	return 0;
}