diff options
author | Maurice Ma <maurice.ma@intel.com> | 2016-08-04 20:56:57 -0700 |
---|---|---|
committer | Maurice Ma <maurice.ma@intel.com> | 2016-08-05 08:42:09 -0700 |
commit | 7e9cf612056ed2667eaad7f0e901f0a37f6ddd5b (patch) | |
tree | 971a186ba7b51dd70042e869fa545c7fd2e2b727 /IntelFsp2Pkg | |
parent | 0667e985270b5c2cc5d89e66bcff7e5804eee21f (diff) | |
download | edk2-platforms-7e9cf612056ed2667eaad7f0e901f0a37f6ddd5b.tar.xz |
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 <jiewen.yao@intel.com>
Cc: Giri P Mudusuru <giri.p.mudusuru@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Maurice Ma <maurice.ma@intel.com>
Reviewed by: Giri P Mudusuru <giri.p.mudusuru@intel.com>
Diffstat (limited to 'IntelFsp2Pkg')
-rw-r--r-- | IntelFsp2Pkg/Include/FspEas.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 <Uefi.h>
+#include <Uefi/UefiBaseType.h>
#include <Guid/GuidHobFspEas.h>
#include <Guid/FspHeaderFile.h>
#include <FspEas/FspApi.h>
|