From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mx.groups.io with SMTP id smtpd.web11.3562.1648535835036332664 for ; Mon, 28 Mar 2022 23:37:16 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=PifTmEDs; spf=pass (domain: intel.com, ip: 192.55.52.120, 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=1648535835; x=1680071835; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=XCwlc5/xzLJ2fxaNyPG3qgaIC1u/umbGRXzmrvT74h4=; b=PifTmEDs5uXBL6opW82OkFPYAvo0m9F5vjHbYc2S0eEkNDGJ90BnPKOt KNNLmkWzPR4PdLhkVq/2Xq8htBgemv6EtBYf/YAUzbzOQyrAsVTpsLZfg BDBQ4DvtLRrbYXa54O6mKV+yLaZ+aklM3ZP8c2V4ozGOeXYISoqvpjxE2 zzKHHkod/Rmu0EIZSVE6Wsn91NpSiw8KJUyVKP4vCNYX4nHhnmUwKlLz1 DIj2ApccKTjA9//9x4x2Ey6WfevGU2Lx7ozWn24ilmzkPq1KoqX38HgVT EiaWO49F4rpCQzLrSAQOHYodMd/h4KocaMN7fSsj7JuUDTpPgNgkNKiUC Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10300"; a="258003850" X-IronPort-AV: E=Sophos;i="5.90,219,1643702400"; d="scan'208";a="258003850" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Mar 2022 23:37:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,219,1643702400"; d="scan'208";a="521316522" Received: from shwdeopenlab704.ccr.corp.intel.com ([10.239.182.50]) by orsmga006.jf.intel.com with ESMTP; 28 Mar 2022 23:37:14 -0700 From: Yu Pu To: devel@edk2.groups.io Cc: Yu Pu , Chasel Chiu , Nate DeSimone , Star Zeng Subject: [PATCH v1 01/15] IntelFsp2Pkg: Add CpuLib to module INFs that depend on UefiCpuLib Date: Tue, 29 Mar 2022 14:36:49 +0800 Message-Id: <20220329063703.549-2-yu.pu@intel.com> X-Mailer: git-send-email 2.30.0.windows.2 In-Reply-To: <20220329063703.549-1-yu.pu@intel.com> References: <20220329063703.549-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