Browse Source

Platform/ARM: Fix Ecc error 1012

This patch fixes the following Ecc reported error:
There should be no trailing white space in one line.

Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com>
Reviewed-by: Chris Jones <christopher.jones@arm.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
Pierre Gondois 2 years ago
parent
commit
8a77dc7243
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Platform/ARM/JunoPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.c

+ 1 - 1
Platform/ARM/JunoPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.c

@@ -797,7 +797,7 @@ InstallAllStructures (
   // Fixup some table values
   mArmDefaultType0.Base.SystemBiosMajorRelease = (PcdGet32 ( PcdFirmwareRevision ) >> 16) & 0xFF;
   mArmDefaultType0.Base.SystemBiosMinorRelease = PcdGet32 ( PcdFirmwareRevision ) & 0xFF;
-  if ( JunoRevision == JUNO_REVISION_R1 ) 
+  if ( JunoRevision == JUNO_REVISION_R1 )
   {
     mArmDefaultType2.Base.Version = 6;
   }