summaryrefslogtreecommitdiff
path: root/arch/x86/cpu/x86_64/misc.c
blob: 02587ff0c50696adfd8f36c6f684028fed8840c6 (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
// SPDX-License-Identifier: GPL-2.0+
/*
 * (C) Copyright 2016 Google, Inc
 * Written by Simon Glass <sjg@chromium.org>
 */

#include <common.h>
#include <init.h>

int misc_init_r(void)
{
	return 0;
}

#ifndef CONFIG_SYS_COREBOOT
int checkcpu(void)
{
	return 0;
}

int print_cpuinfo(void)
{
	return 0;
}
#endif