From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mx.groups.io with SMTP id smtpd.web09.33708.1658182394386742860 for ; Mon, 18 Jul 2022 15:13:15 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=IiaUH50v; spf=pass (domain: intel.com, ip: 192.55.52.88, mailfrom: chasel.chiu@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1658182395; x=1689718395; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=dZpuZAl8Yf3FxlIa3EvFuryEBGVFakEBGHnSsjuzyZo=; b=IiaUH50vTYpidhai8Jxgb1IkIssn7K8HfnOIH82Y+iARdt8fcF+OTLdV Vp5y90kyD2VPz5gJjRikKB55dYVyIVSZp5eE024uNOa69s3ZAhaedUrC7 Kb/Yt+niWBtfZHGI+vZysrfIs9/8aN/jh6MtxAZ5+mYajLXo5RlB8Z4XE YJimrhdquL6lhvog2pLhK/y3R1EnPXabpmEnGyBkI0SNw85GgKMqFKRi0 r+m5qC19DISlh8Y53asd0x/itiuLTbCkCv83VJFr9oUeSD0qYBILdH8uZ V7cdmkFH/gZd9EKynBg8QTlQnvY58nk7f05ETlP+ovk1bIDD7v+k78BMM g==; X-IronPort-AV: E=McAfee;i="6400,9594,10412"; a="312018775" X-IronPort-AV: E=Sophos;i="5.92,282,1650956400"; d="scan'208";a="312018775" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jul 2022 15:13:14 -0700 X-IronPort-AV: E=Sophos;i="5.92,282,1650956400"; d="scan'208";a="665177275" Received: from cchiu4-mobl.gar.corp.intel.com ([10.209.6.246]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jul 2022 15:13:14 -0700 From: "Chiu, Chasel" To: devel@edk2.groups.io Cc: Chasel Chiu , Isaac Oram , Nate DeSimone Subject: [PATCH 2/2] WhitleySiliconPkg: FspResetType support for X64 build. Date: Mon, 18 Jul 2022 15:12:57 -0700 Message-Id: <20220718221257.1318-3-chasel.chiu@intel.com> X-Mailer: git-send-email 2.35.0.windows.1 In-Reply-To: <20220718221257.1318-1-chasel.chiu@intel.com> References: <20220718221257.1318-1-chasel.chiu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable FSP_STATUS_RESET_REQUIRED_* will be either 32bit or 64bit basing on the build and this patch extended the support for 64bit build. Cc: Isaac Oram Cc: Nate DeSimone Signed-off-by: Chasel Chiu --- Silicon/Intel/WhitleySiliconPkg/Library/FspWrapperPlatformLib/FspWrapperPl= atformLib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Silicon/Intel/WhitleySiliconPkg/Library/FspWrapperPlatformLib/= FspWrapperPlatformLib.c b/Silicon/Intel/WhitleySiliconPkg/Library/FspWrappe= rPlatformLib/FspWrapperPlatformLib.c index 95a1f2a33c..94b98ef2df 100644 --- a/Silicon/Intel/WhitleySiliconPkg/Library/FspWrapperPlatformLib/FspWrap= perPlatformLib.c +++ b/Silicon/Intel/WhitleySiliconPkg/Library/FspWrapperPlatformLib/FspWrap= perPlatformLib.c @@ -2,7 +2,7 @@ Sample to provide FSP wrapper related function.=0D =0D @copyright=0D - Copyright 2014 - 2021 Intel Corporation.
=0D + Copyright 2014 - 2022 Intel Corporation.
=0D =0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D **/=0D @@ -190,7 +190,7 @@ GetS3MemoryInfo ( VOID=0D EFIAPI=0D CallFspWrapperResetSystem (=0D - IN UINT32 FspStatusResetType=0D + IN UINTN FspStatusResetType=0D )=0D {=0D //=0D --=20 2.35.0.windows.1