Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/68042 )
Change subject: cpu/x86/pae/pgtbl.c: Clean up includes and add <types.h> ......................................................................
cpu/x86/pae/pgtbl.c: Clean up includes and add <types.h>
Signed-off-by: Elyes Haouas ehaouas@noos.fr Change-Id: I0ab39ff20b0fb59026063e064e20ce901c2985fe --- M src/cpu/x86/pae/pgtbl.c 1 file changed, 11 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/42/68042/1
diff --git a/src/cpu/x86/pae/pgtbl.c b/src/cpu/x86/pae/pgtbl.c index c8783d6..8f556eb 100644 --- a/src/cpu/x86/pae/pgtbl.c +++ b/src/cpu/x86/pae/pgtbl.c @@ -3,13 +3,12 @@ #include <cbfs.h> #include <commonlib/helpers.h> #include <console/console.h> -#include <arch/cpu.h> #include <cpu/x86/cr.h> #include <cpu/x86/msr.h> #include <cpu/x86/pae.h> #include <string.h> #include <symbols.h> -#include <assert.h> +#include <types.h>
#define PDPTE_PRES (1ULL << 0) #define PDPTE_ADDR_MASK (~((1ULL << 12) - 1))