From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by ml01.01.org (Postfix) with ESMTP id C1AF31A1DF8 for ; Thu, 4 Aug 2016 21:20:24 -0700 (PDT) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP; 04 Aug 2016 21:20:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,472,1464678000"; d="scan'208";a="1030110248" Received: from mxma-desk2.amr.corp.intel.com ([134.134.155.154]) by orsmga002.jf.intel.com with ESMTP; 04 Aug 2016 21:20:24 -0700 From: Maurice Ma To: edk2-devel@lists.01.org Cc: Maurice Ma , Jiewen Yao , Giri P Mudusuru Date: Thu, 4 Aug 2016 21:20:06 -0700 Message-Id: X-Mailer: git-send-email 1.9.5.msysgit.0 Subject: [PATCH] IntelFsp2Pkg: Only include required header files in FspEas.h X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Aug 2016 04:20:24 -0000 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 --- 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 79bb0b8e8efc..00098a392699 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 -- 1.9.5.msysgit.0