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.web11.183.1637771027607872039 for ; Wed, 24 Nov 2021 08:23:47 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: pierre.gondois@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 338E111FB; Wed, 24 Nov 2021 08:23:47 -0800 (PST) Received: from e126645.nice.arm.com (e126645.nice.arm.com [10.34.125.4]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 74FAF3F66F; Wed, 24 Nov 2021 08:23:46 -0800 (PST) From: "PierreGondois" To: devel@edk2.groups.io Cc: Sami Mujawar Subject: [PATCH edk2-platforms v1 07/10] Platform/ARM: Fix Ecc error 1012 Date: Wed, 24 Nov 2021 17:23:27 +0100 Message-Id: <20211124162330.236813-8-Pierre.Gondois@arm.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211124162330.236813-1-Pierre.Gondois@arm.com> References: <20211124162330.236813-1-Pierre.Gondois@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Pierre Gondois This patch fixes the following Ecc reported error: There should be no trailing white space in one line. Signed-off-by: Pierre Gondois --- Platform/ARM/JunoPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platform/ARM/JunoPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.c b= /Platform/ARM/JunoPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.c index a5a675b2a613..76084279a558 100644 --- a/Platform/ARM/JunoPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.c +++ b/Platform/ARM/JunoPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.c @@ -797,7 +797,7 @@ InstallAllStructures ( // Fixup some table values mArmDefaultType0.Base.SystemBiosMajorRelease =3D (PcdGet32 ( PcdFirmwa= reRevision ) >> 16) & 0xFF; mArmDefaultType0.Base.SystemBiosMinorRelease =3D PcdGet32 ( PcdFirmwar= eRevision ) & 0xFF; - if ( JunoRevision =3D=3D JUNO_REVISION_R1 ) + if ( JunoRevision =3D=3D JUNO_REVISION_R1 ) { mArmDefaultType2.Base.Version =3D 6; } -- 2.25.1