diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-10-07 10:06:25 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-10-26 16:27:41 +0000 |
commit | deb5645644edf8b8594f89acf4d33544a8ea6f44 (patch) | |
tree | d3a0f08178b2517360eaef0cf2cfcb48c0ff79a4 /src/cpu/intel/microcode | |
parent | 6a9ae29c05f9462dfdeaba931bbbd5fca6b97e1b (diff) |
cpu/intel: Clean up includes
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: Ie760711916c49d275ca49d94b9597fd24b5e7628
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68203
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Diffstat (limited to 'src/cpu/intel/microcode')
-rw-r--r-- | src/cpu/intel/microcode/microcode.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/cpu/intel/microcode/microcode.c b/src/cpu/intel/microcode/microcode.c index bb2edfa07d..ac9453f461 100644 --- a/src/cpu/intel/microcode/microcode.c +++ b/src/cpu/intel/microcode/microcode.c @@ -2,14 +2,13 @@ /* Microcode update for Intel PIII and later CPUs */ -#include <stdint.h> -#include <stddef.h> -#include <cbfs.h> #include <arch/cpu.h> +#include <cbfs.h> #include <console/console.h> -#include <cpu/x86/msr.h> #include <cpu/intel/microcode.h> +#include <cpu/x86/msr.h> #include <smp/spinlock.h> +#include <types.h> DECLARE_SPIN_LOCK(microcode_lock) |