diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-10-07 10:07:12 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-10-26 16:37:34 +0000 |
commit | 45d3205ba565ababcaf1e9e85a63dd7a0b1d72be (patch) | |
tree | 69fb098295fb88197d4f2ce77bfda3af1a957c9b /src/cpu/x86/mtrr | |
parent | deb5645644edf8b8594f89acf4d33544a8ea6f44 (diff) |
cpu/x86: Clean up includes
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: I01c6651079333686cb0eb68e89e56d7907868124
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68204
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/x86/mtrr')
-rw-r--r-- | src/cpu/x86/mtrr/debug.c | 1 | ||||
-rw-r--r-- | src/cpu/x86/mtrr/earlymtrr.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/x86/mtrr/debug.c b/src/cpu/x86/mtrr/debug.c index 4ecae068b7..a3e40d3a6c 100644 --- a/src/cpu/x86/mtrr/debug.c +++ b/src/cpu/x86/mtrr/debug.c @@ -2,6 +2,7 @@ #include <console/console.h> #include <cpu/cpu.h> +#include <cpu/x86/msr.h> #include <cpu/x86/mtrr.h> #include <stdint.h> diff --git a/src/cpu/x86/mtrr/earlymtrr.c b/src/cpu/x86/mtrr/earlymtrr.c index 2c14a70609..aa430d5330 100644 --- a/src/cpu/x86/mtrr/earlymtrr.c +++ b/src/cpu/x86/mtrr/earlymtrr.c @@ -5,7 +5,7 @@ #include <cpu/x86/msr.h> #include <console/console.h> #include <commonlib/bsd/helpers.h> -#include <stdint.h> +#include <types.h> /* Get first available variable MTRR. * Returns var# if available, else returns -1. |