From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.14675.1641937615645572712 for ; Tue, 11 Jan 2022 13:46:55 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: sunny.wang@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id BEA5F1FB; Tue, 11 Jan 2022 13:46:54 -0800 (PST) Received: from localhost.localdomain (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 6D2723F774; Tue, 11 Jan 2022 13:46:53 -0800 (PST) From: "Sunny Wang" To: devel@edk2.groups.io Cc: Sunny Wang , Leif Lindholm , Ard Biesheuvel , Marcin Wojtas , Samer El-Haj-Mahmoud , Sunny Wang Subject: [edk2-platform PATCH v1] Silicon/Marvell/Armada7k8k: Fix wrong SMBIOS version issue Date: Tue, 11 Jan 2022 21:46:26 +0000 Message-Id: <20220111214626.1597-1-Sunny.Wang@arm.com> X-Mailer: git-send-email 2.32.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable The SMBIOS data is based on v3.3.0, but its version is set to v3.2.0. Since PcdSmbiosVersion in MdeModulePkg.dec is v3.3.0, so just remove the platform overridden value in .dsc file to fix this issue. This also fixed the FWTS failure below: dmicheck: Type 17 expects length of 0x54, has incorrect length of 0x5c Cc: Leif Lindholm Cc: Ard Biesheuvel Cc: Marcin Wojtas Cc: Samer El-Haj-Mahmoud Signed-off-by: Sunny Wang --- Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc b/Silicon/Marv= ell/Armada7k8k/Armada7k8k.dsc.inc index 3b76acd99c..5e15378207 100644 --- a/Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc +++ b/Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc @@ -1,5 +1,5 @@ # -#Copyright (c) 2011-2012, ARM Limited. All rights reserved. +#Copyright (c) 2011-2022, ARM Limited. All rights reserved. #Copyright (C) 2016 Marvell International Ltd. # #SPDX-License-Identifier: BSD-2-Clause-Patent @@ -387,7 +387,6 @@ # SMBIOS/DMI gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosDocRev|0x0 gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosEntryPointProvideMethod|0x2 - gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion|0x0302 gMarvellTokenSpaceGuid.PcdFirmwareVersion|"EDK2 SH 1.1" =20 # TRNG --=20 2.32.0.windows.1