From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mx.groups.io with SMTP id smtpd.web10.6771.1668758353219060329 for ; Thu, 17 Nov 2022 23:59:16 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=SN6gTQqi; spf=pass (domain: intel.com, ip: 192.55.52.43, mailfrom: min.m.xu@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1668758356; x=1700294356; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=4okpKDshjISf04vDl8EaezVJ0IIJzgCGEtw7j4GbjTo=; b=SN6gTQqijJdnqSerlO50rGSnSyGgxouxhAadxyFBeiVf42mz7u9OV8T4 3+m27cONzJyVlGITp43u4uk3kTLqNb3XMDQtS/2ouYjCKctCk8AtaWSu8 JkaLynRj0imFeU5pJgXXf81R2XG3wv2tpic1T2qTtcR9DYS+K3NbEHBtA +2TkoX7BGy+0YwotdVczia6jU8BQkIXNAPuB9bPBsL+pw1bCTS0BGLZul f2D2h0MxGqSbRD/0VvkjF6Et0iHS7y6N0LmrfVg62TlEs2nfVITiGMWQa fiV7Hkbl1w6Gwkn9EOCBIjw8BHZg3gaCbuMzHA8FW8mk0MtFdoVSCuYxL A==; X-IronPort-AV: E=McAfee;i="6500,9779,10534"; a="399367845" X-IronPort-AV: E=Sophos;i="5.96,173,1665471600"; d="scan'208";a="399367845" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2022 23:59:16 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10534"; a="708940533" X-IronPort-AV: E=Sophos;i="5.96,173,1665471600"; d="scan'208";a="708940533" Received: from mxu9-mobl1.ccr.corp.intel.com ([10.249.173.8]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2022 23:59:14 -0800 From: "Min Xu" To: devel@edk2.groups.io Cc: Min M Xu , Michael D Kinney , Kelly Steele , Nate DeSimone , Jiewen Yao Subject: [PATCH V1 2/5] QuarkPlatformPkg: Use CcExitLib instead of VmgEixtLib Date: Fri, 18 Nov 2022 15:56:54 +0800 Message-Id: <20221118075657.665-3-min.m.xu@intel.com> X-Mailer: git-send-email 2.29.2.windows.2 In-Reply-To: <20221118075657.665-1-min.m.xu@intel.com> References: <20221118075657.665-1-min.m.xu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Min M Xu BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4159 VmgExitLib is renamed as CcExitLib in EDK2. This change should be applied in QuarkPlatformPkg as well. Cc: Michael D Kinney Cc: Kelly Steele Cc: Nate DeSimone Cc: Jiewen Yao Signed-off-by: Min Xu --- Platform/Intel/QuarkPlatformPkg/Quark.dsc | 2 +- Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Platform/Intel/QuarkPlatformPkg/Quark.dsc b/Platform/Intel/QuarkPlatformPkg/Quark.dsc index cc1eba4df47d..24a19bb464bd 100644 --- a/Platform/Intel/QuarkPlatformPkg/Quark.dsc +++ b/Platform/Intel/QuarkPlatformPkg/Quark.dsc @@ -105,7 +105,7 @@ !endif DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf - VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf + CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf # # UEFI & PI diff --git a/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc b/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc index 993d698eece5..a337d497a69f 100644 --- a/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc +++ b/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc @@ -93,7 +93,7 @@ !endif DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf - VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf + CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf # # UEFI & PI -- 2.29.2.windows.2