From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mx.groups.io with SMTP id smtpd.web11.8057.1617687042378475815 for ; Mon, 05 Apr 2021 22:30:42 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.24, mailfrom: michael.d.kinney@intel.com) IronPort-SDR: Jgt49DGTDJS9i67HFAe5VF6qYKAd3joWbWSZrNqjaK9DKC3uo3H80ZuWmz0dz/u5fHfNME7FlC wkkBIbpYD3Ug== X-IronPort-AV: E=McAfee;i="6000,8403,9945"; a="193099281" X-IronPort-AV: E=Sophos;i="5.81,308,1610438400"; d="scan'208";a="193099281" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Apr 2021 22:30:41 -0700 IronPort-SDR: oSfjxIiet566qZebOqzi3aEvroaw7WSQ03e7nbMefJ3Fr2dDN72e9oKhEBOAHYJMcyHMUOCao0 ooeG2tDsFRnA== X-IronPort-AV: E=Sophos;i="5.81,308,1610438400"; d="scan'208";a="379249331" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.209.6.145]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Apr 2021 22:30:41 -0700 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Zailiang Sun , Yi Qian Subject: [edk2-platforms][Patch] Vlv2TbltDevicePkg/SmBiosMiscDxe: Update SMBIOS Type 4 field name Date: Mon, 5 Apr 2021 22:30:34 -0700 Message-Id: <20210406053034.1334-1-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Update SMBIOS TYpe 4 field name from ProcessorManufacture to ProcessorManufacturer to match latest SMBIOS include file definitions in MdePkg. Cc: Zailiang Sun Cc: Yi Qian Signed-off-by: Michael D Kinney --- .../SmBiosMiscDxe/MiscProcessorInformationFunction.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Platform/Intel/Vlv2TbltDevicePkg/SmBiosMiscDxe/MiscProcessorInformationFunction.c b/Platform/Intel/Vlv2TbltDevicePkg/SmBiosMiscDxe/MiscProcessorInformationFunction.c index 3360bdc541..815c17d8ff 100644 --- a/Platform/Intel/Vlv2TbltDevicePkg/SmBiosMiscDxe/MiscProcessorInformationFunction.c +++ b/Platform/Intel/Vlv2TbltDevicePkg/SmBiosMiscDxe/MiscProcessorInformationFunction.c @@ -1,6 +1,6 @@ /*++ -Copyright (c) 2006 - 2020, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent @@ -319,7 +319,7 @@ MISC_SMBIOS_TABLE_FUNCTION (MiscProcessorInformation) SmbiosRecord->Hdr.Handle = 0; SmbiosRecord-> Socket= 1; - SmbiosRecord -> ProcessorManufacture = 2; + SmbiosRecord -> ProcessorManufacturer = 2; SmbiosRecord -> ProcessorVersion = 3; SmbiosRecord ->SerialNumber =4; @@ -455,4 +455,3 @@ MISC_SMBIOS_TABLE_FUNCTION (MiscProcessorInformation) return Status; } - -- 2.31.1.windows.1