Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/56186 )
Change subject: security/intel/txt: add missing cpu/x86/msr.h include ......................................................................
security/intel/txt: add missing cpu/x86/msr.h include
msr_t and a few other things used in here are defined in cpu/x86/msr.h, so include it directly in this file.
Change-Id: I7a3299381ff54b7665620861dec60642f27bac8d Signed-off-by: Felix Held felix-coreboot@felixheld.de --- M src/security/intel/txt/common.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/86/56186/1
diff --git a/src/security/intel/txt/common.c b/src/security/intel/txt/common.c index 437c55e..239e152 100644 --- a/src/security/intel/txt/common.c +++ b/src/security/intel/txt/common.c @@ -6,6 +6,7 @@ #include <cpu/x86/cr.h> #include <cpu/x86/lapic.h> #include <cpu/x86/mp.h> +#include <cpu/x86/msr.h> #include <cpu/x86/mtrr.h> #include <lib.h> #include <smp/node.h>