blob: cfccf4c1658f913bdd81793923dfc041dcff662d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef __ARCH_CPU_H__
#define __ARCH_CPU_H__
#define asmlinkage
static inline unsigned int smp_processor_id(void) { return 0; }
struct cpu_driver { };
#endif /* __ARCH_CPU_H__ */
|