From 7e9cf612056ed2667eaad7f0e901f0a37f6ddd5b Mon Sep 17 00:00:00 2001 From: Maurice Ma Date: Thu, 4 Aug 2016 20:56:57 -0700 Subject: [PATCH] IntelFsp2Pkg: Only include required header files in FspEas.h Current FspEas.h file includes Uefi.h which also refers to lots of other UEFI header files not used by FSP consumer. It caused many unnecessary header file overhead for a bootloader that consumes FSP, such as coreboot. This change reduces the required header file number down to 3. Cc: Jiewen Yao Cc: Giri P Mudusuru Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Maurice Ma Reviewed by: Giri P Mudusuru --- IntelFsp2Pkg/Include/FspEas.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IntelFsp2Pkg/Include/FspEas.h b/IntelFsp2Pkg/Include/FspEas.h index 79bb0b8e8e..00098a3926 100644 --- a/IntelFsp2Pkg/Include/FspEas.h +++ b/IntelFsp2Pkg/Include/FspEas.h @@ -16,7 +16,7 @@ #ifndef _FSP_EAS_H_ #define _FSP_EAS_H_ -#include +#include #include #include #include -- 2.39.2