From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mx.groups.io with SMTP id smtpd.web11.10658.1589304360742283261 for ; Tue, 12 May 2020 10:26:00 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.93, mailfrom: kathappan.esakkithevar@intel.com) IronPort-SDR: S/3MKrY5KyWRxAKhB1aFPtKM/cAjy7p8gtuBDCOG96GoESNEkuFMPDjc791tEAqQ4PXpibK7oB CweCOd9JTQyg== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 May 2020 10:26:00 -0700 IronPort-SDR: u/zY/TrclS/6ZYrHyoPCpht6lxMs3X9h75kfssbMc2A6I0JMFUDyV9x3yDRBSLI3/46rNDTzl4 wOth/fqre9Wg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,384,1583222400"; d="scan'208";a="265576996" Received: from kesakkit-desk2.gar.corp.intel.com ([10.66.253.115]) by orsmga006.jf.intel.com with ESMTP; 12 May 2020 10:25:58 -0700 From: "Kathappan Esakkithevar" To: devel@edk2.groups.io Cc: Sai Chaganty , Chasel Chiu , Nate DeSimone , Deepika Kethi Reddy Subject: [Patch V1 1/1] CometlakeOpenBoardPkg: Fix build error due to Ddr4MixedUDimm2DpcLimit Date: Tue, 12 May 2020 22:55:55 +0530 Message-Id: <20200512172555.56680-1-kathappan.esakkithevar@intel.com> X-Mailer: git-send-email 2.16.2.windows.1 The Ddr4MixedUDimm2DpcLimit FSP-M Upd has been renamed as Ddr4Mixed2DpcLimit at CometLakeFspBinPkg\CometLake1. FSP wrapper driver need to use FSP-M Upd name Ddr4Mixed2DpcLimit from CometLake1 FSP at CometlakeOpenBoardPkg. REF:https://bugzilla.tianocore.org/show_bug.cgi?id=2714 Signed-off-by: Kathappan Esakkithevar Cc: Sai Chaganty Cc: Chasel Chiu Cc: Nate DeSimone Cc: Deepika Kethi Reddy --- .../FspWrapper/Library/PeiFspPolicyInitLib/PeiFspSaPolicyInitLib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platform/Intel/CometlakeOpenBoardPkg/FspWrapper/Library/PeiFspPolicyInitLib/PeiFspSaPolicyInitLib.c b/Platform/Intel/CometlakeOpenBoardPkg/FspWrapper/Library/PeiFspPolicyInitLib/PeiFspSaPolicyInitLib.c index 45d76ad5e4..53f26d824f 100644 --- a/Platform/Intel/CometlakeOpenBoardPkg/FspWrapper/Library/PeiFspPolicyInitLib/PeiFspSaPolicyInitLib.c +++ b/Platform/Intel/CometlakeOpenBoardPkg/FspWrapper/Library/PeiFspPolicyInitLib/PeiFspSaPolicyInitLib.c @@ -344,7 +344,7 @@ PeiFspSaPolicyInitPreMem ( FspmUpd->FspmConfig.GdxcIotSize = MemConfig->GdxcIotSize; FspmUpd->FspmConfig.GdxcMotSize = MemConfig->GdxcMotSize; FspmUpd->FspmConfig.DualDimmPerChannelBoardType =(UINT8) MemConfig->DualDimmPerChannelBoardType; - FspmUpd->FspmConfig.Ddr4MixedUDimm2DpcLimit =(UINT8) MemConfig->Ddr4MixedUDimm2DpcLimit; + FspmUpd->FspmConfig.Ddr4Mixed2DpcLimit =(UINT8) MemConfig->Ddr4MixedUDimm2DpcLimit; // // Update UPD:CaVrefConfig // -- 2.16.2.windows.1