From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mx.groups.io with SMTP id smtpd.web09.6938.1648790536331257126 for ; Thu, 31 Mar 2022 22:22:18 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=a9CJLB3M; spf=pass (domain: intel.com, ip: 192.55.52.115, mailfrom: yu.pu@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1648790537; x=1680326537; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=XCwlc5/xzLJ2fxaNyPG3qgaIC1u/umbGRXzmrvT74h4=; b=a9CJLB3MCKllyLYsttBhVJ6zybYUqi/q7GYB7AFwiALxTdOHjO2vPwj2 Agrc1HaspM6RNlY6FwUPElqgor3+Lkrlow5iBfuJJFLXyWVy6JjOix9r6 8dv6DV2BoImZ6ABA0/pTULv9fcqxKyGvlu74SuXubDKgcyv3FcIeEdWyX fIBcgVcgPqhttMhgl4QQ4SjmADUODroi4uDp4wta72MhH3kddi+inmO2Y vHIQkuDqTCNG2VT9OTtnn8uCyChAowwSc35YqMbcuplBI5p7MlpzKgAgc XxpTeBHu7agws8YaSyE+VmP+aSJMf9rvga0Gn9TYpF4ck0wFz8Lawq3Bk Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10303"; a="260224536" X-IronPort-AV: E=Sophos;i="5.90,226,1643702400"; d="scan'208";a="260224536" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 Mar 2022 22:22:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,226,1643702400"; d="scan'208";a="567158765" Received: from shwdeopenlab704.ccr.corp.intel.com ([10.239.182.50]) by orsmga008.jf.intel.com with ESMTP; 31 Mar 2022 22:22:15 -0700 From: Yu Pu To: devel@edk2.groups.io Cc: Yu Pu , Chasel Chiu , Nate DeSimone , Star Zeng Subject: [PATCH v1 1/6] IntelFsp2Pkg: Add CpuLib to module INFs that depend on UefiCpuLib Date: Fri, 1 Apr 2022 13:22:06 +0800 Message-Id: <20220401052211.2914-2-yu.pu@intel.com> X-Mailer: git-send-email 2.30.0.windows.2 In-Reply-To: <20220401052211.2914-1-yu.pu@intel.com> References: <20220401052211.2914-1-yu.pu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Step 1 to merge UefiCpuLib to CpuLib. Cc: Chasel Chiu Cc: Nate DeSimone Cc: Star Zeng Signed-off-by: Yu Pu --- IntelFsp2Pkg/FspSecCore/FspSecCoreM.inf | 1 + IntelFsp2Pkg/FspSecCore/SecMain.h | 1 + 2 files changed, 2 insertions(+) diff --git a/IntelFsp2Pkg/FspSecCore/FspSecCoreM.inf b/IntelFsp2Pkg/FspSecC= ore/FspSecCoreM.inf index 7b05cae64130..830471adcf2f 100644 --- a/IntelFsp2Pkg/FspSecCore/FspSecCoreM.inf +++ b/IntelFsp2Pkg/FspSecCore/FspSecCoreM.inf @@ -51,6 +51,7 @@ FspSwitchStackLib=0D FspCommonLib=0D FspSecPlatformLib=0D + CpuLib=0D UefiCpuLib=0D =0D [Pcd]=0D diff --git a/IntelFsp2Pkg/FspSecCore/SecMain.h b/IntelFsp2Pkg/FspSecCore/Se= cMain.h index 7794255af13d..edb7447d9eff 100644 --- a/IntelFsp2Pkg/FspSecCore/SecMain.h +++ b/IntelFsp2Pkg/FspSecCore/SecMain.h @@ -20,6 +20,7 @@ #include =0D #include =0D #include =0D +#include =0D #include =0D #include =0D =0D --=20 2.30.0.windows.2