coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
cpu.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef _SOC_CPU_H
4 #define _SOC_CPU_H
5 
6 #include <device/device.h>
7 #include <cpu/intel/cpu_ids.h>
8 #include <cpu/x86/msr.h>
9 
10 void cpx_init_cpus(struct device *dev);
11 
12 #endif
void cpx_init_cpus(struct device *dev)
Definition: cpu.c:209
Definition: device.h:107