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.153425.1680768825726860879 for ; Thu, 06 Apr 2023 01:13:47 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=Yf2Y7ezi; spf=pass (domain: intel.com, ip: 192.55.52.120, mailfrom: zhiguang.liu@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1680768825; x=1712304825; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=RqB/1qQxONraTVCi+5AAUsnkZzpMKzAbA0oeIYJPNNg=; b=Yf2Y7eziYwdfhv1AJRuTpfGTIkyCOQtuKB1Vml4xWRw4Fu8E3nHMVj/N K2bZ23MQ1zRGnYOgJi5+z7y50C1l6MWmCja8aXZQR+XXKJzspBRLeyjn3 Us1CihAvQJgufeCebY5EeK8uIk+joMm0sKRnjp3qeKLhHZyn9VfraZvip icVFrAOMTA+/N6856q1EzWRfZnBFf4nzGCXQSsjB50h113e/x19hCBhsE i9qwHje5ILaoDYT6Z1C8+w0nr6fZYrqGpeGH3t0FWniO6SUxzDKTbNJYq k3cLvlJsAwydUsI8uq4Y0r59jg/ZljiiCcM6O/BIcmsaLFq8yuU30Fjm6 w==; X-IronPort-AV: E=McAfee;i="6600,9927,10671"; a="341412019" X-IronPort-AV: E=Sophos;i="5.98,323,1673942400"; d="scan'208";a="341412019" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Apr 2023 01:13:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10671"; a="810912607" X-IronPort-AV: E=Sophos;i="5.98,323,1673942400"; d="scan'208";a="810912607" Received: from shwdesfp01.ccr.corp.intel.com ([10.239.158.151]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Apr 2023 01:13:44 -0700 From: "Zhiguang Liu" To: devel@edk2.groups.io Cc: Zhiguang Liu , Nate DeSimone Subject: [PATCH V2 1/5] SimicsOpenBoardPkg: Delete UefiCpuLib usage Date: Thu, 6 Apr 2023 16:13:31 +0800 Message-Id: <20230406081335.1543-2-zhiguang.liu@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20230406081335.1543-1-zhiguang.liu@intel.com> References: <20230406081335.1543-1-zhiguang.liu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Delete UefiCpuLib usage because UefiCpuPkg/UefiCpuLib is merged to MdePkg/CpuLib. V2: Let SecMain file use CpuLib Cc: Nate DeSimone Signed-off-by: Zhiguang Liu --- Platform/Intel/SimicsOpenBoardPkg/SecCore/SecMain.c | 4 ++-- Platform/Intel/SimicsOpenBoardPkg/SecCore/SecMain.inf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Platform/Intel/SimicsOpenBoardPkg/SecCore/SecMain.c b/Platform/Intel/SimicsOpenBoardPkg/SecCore/SecMain.c index 4514641b46..6b572b38a8 100644 --- a/Platform/Intel/SimicsOpenBoardPkg/SecCore/SecMain.c +++ b/Platform/Intel/SimicsOpenBoardPkg/SecCore/SecMain.c @@ -1,7 +1,7 @@ /** @file Main SEC phase code. Transitions to PEI. - Copyright (c) 2008 - 2019, Intel Corporation. All rights reserved.
+ Copyright (c) 2008 - 2023, Intel Corporation. All rights reserved.
(C) Copyright 2016 Hewlett Packard Enterprise Development LP
SPDX-License-Identifier: BSD-2-Clause-Patent @@ -15,7 +15,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/Platform/Intel/SimicsOpenBoardPkg/SecCore/SecMain.inf b/Platform/Intel/SimicsOpenBoardPkg/SecCore/SecMain.inf index 61ca2c0613..9dd492a2fb 100644 --- a/Platform/Intel/SimicsOpenBoardPkg/SecCore/SecMain.inf +++ b/Platform/Intel/SimicsOpenBoardPkg/SecCore/SecMain.inf @@ -1,7 +1,7 @@ ## @file # SEC Driver # -# Copyright (c) 2008 - 2019 Intel Corporation. All rights reserved.
+# Copyright (c) 2008 - 2023 Intel Corporation. All rights reserved.
# # SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -44,7 +44,7 @@ BaseMemoryLib PeiServicesLib PcdLib - UefiCpuLib + CpuLib DebugAgentLib IoLib PeCoffLib -- 2.31.1.windows.1