public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v1 00/16] Fix Ecc reported errors in ArmPlatformPkg
@ 2020-12-03 18:19 PierreGondois
  2020-12-03 18:19 ` [PATCH v1 01/16] ArmPlatformPkg: Fix Ecc error 3001 in NorFlashDxe PierreGondois
                   ` (16 more replies)
  0 siblings, 17 replies; 19+ messages in thread
From: PierreGondois @ 2020-12-03 18:19 UTC (permalink / raw)
  To: leif, ard.biesheuvel, thomas.abraham, devel; +Cc: sami.mujawar

From: Pierre Gondois <Pierre.Gondois@arm.com>

The Ecc tools available in the BaseTools package checks for
good practice coding standards. Some errors reported while
running Ecc on edk2/ArmPlatformPkg require modifications.

This patch set has a dependency over a similar patch set
named "Fix Ecc reported errors from ArmPlatformPkg" for
edk2-platforms and should not be merged independently.

The changes can be seen at: https://github.com/PierreARM/edk2/tree/1537_Ecc_ArmPlatformPkg_v1

Pierre Gondois (16):
  ArmPlatformPkg: Fix Ecc error 3001 in NorFlashDxe
  ArmPlatformPkg: Fix Ecc error 3002 in PL011UartLib
  ArmPlatformPkg: Fix Ecc error 3002 in PL061GpioDxe
  ArmPlatformPkg: Fix Ecc error 5007 in LcdGraphicsOutputDxe
  ArmPlatformPkg: Fix Ecc error 5007 in NorFlashDxe
  ArmPlatformPkg: Fix Ecc error 5007 in PL061GpioDxe
  ArmPlatformPkg: Fix Ecc error 5007 in PL031RealTimeClockLib
  ArmPlatformPkg: Fix Ecc error 10016 in PrePi
  ArmPlatformPkg: Fix Ecc error 10016 in LcdPlatformNullLib
  ArmPlatformPkg: Fix Ecc error 10014 in LcdGraphicsOutputDxe
  ArmPlatformPkg: Fix Ecc error 10014 in PL061GpioDxe
  ArmPlatformPkg: Fix Ecc error 10014 in SP805WatchdogDxe
  ArmPlatformPkg: Fix Ecc error 10006 in ArmPlatformPkg.dsc
  ArmPlatformPkg: Fix Ecc error 8001 in PrePi
  ArmPlatformPkg: Fix Ecc error 8005
  ArmPlatformPkg: Fix cspell reported spelling/wording

 ArmPlatformPkg/ArmPlatformPkg.dsc             |  9 +-
 .../LcdGraphicsOutputBlt.c                    | 98 ++++++++++---------
 .../LcdGraphicsOutputDxe.c                    | 30 +++---
 .../LcdGraphicsOutputDxe.h                    |  4 +-
 .../LcdGraphicsOutputDxe.inf                  |  5 +-
 .../Drivers/NorFlashDxe/NorFlashDxe.c         |  8 +-
 .../Drivers/PL061GpioDxe/PL061Gpio.c          | 12 +--
 .../Drivers/PL061GpioDxe/PL061GpioDxe.inf     |  3 +-
 .../SP805WatchdogDxe/SP805WatchdogDxe.inf     |  3 +-
 .../Include/Library/LcdPlatformLib.h          | 21 ++--
 .../LcdPlatformNullLib/LcdPlatformNullLib.c   |  4 +-
 .../LcdPlatformNullLib/LcdPlatformNullLib.inf |  3 +-
 .../Library/PL011UartLib/PL011UartLib.c       | 12 +--
 .../PL031RealTimeClockLib.c                   |  4 +-
 ArmPlatformPkg/Library/PL111Lcd/PL111Lcd.c    |  4 +-
 .../PrePi/AArch64/ModuleEntryPoint.S          |  4 +-
 ArmPlatformPkg/PrePi/Arm/ModuleEntryPoint.S   |  4 +-
 ArmPlatformPkg/PrePi/Arm/ModuleEntryPoint.asm |  4 +-
 ArmPlatformPkg/PrePi/PeiUniCore.inf           |  3 +-
 ArmPlatformPkg/PrePi/PrePi.h                  |  4 +-
 20 files changed, 126 insertions(+), 113 deletions(-)

--
2.17.1


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2020-12-09 15:33 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-03 18:19 [PATCH v1 00/16] Fix Ecc reported errors in ArmPlatformPkg PierreGondois
2020-12-03 18:19 ` [PATCH v1 01/16] ArmPlatformPkg: Fix Ecc error 3001 in NorFlashDxe PierreGondois
2020-12-03 18:19 ` [PATCH v1 02/16] ArmPlatformPkg: Fix Ecc error 3002 in PL011UartLib PierreGondois
2020-12-03 18:19 ` [PATCH v1 03/16] ArmPlatformPkg: Fix Ecc error 3002 in PL061GpioDxe PierreGondois
2020-12-03 18:19 ` [PATCH v1 04/16] ArmPlatformPkg: Fix Ecc error 5007 in LcdGraphicsOutputDxe PierreGondois
2020-12-03 18:19 ` [PATCH v1 05/16] ArmPlatformPkg: Fix Ecc error 5007 in NorFlashDxe PierreGondois
2020-12-03 18:19 ` [PATCH v1 06/16] ArmPlatformPkg: Fix Ecc error 5007 in PL061GpioDxe PierreGondois
2020-12-03 18:19 ` [PATCH v1 07/16] ArmPlatformPkg: Fix Ecc error 5007 in PL031RealTimeClockLib PierreGondois
2020-12-03 18:19 ` [PATCH v1 08/16] ArmPlatformPkg: Fix Ecc error 10016 in PrePi PierreGondois
2020-12-03 18:19 ` [PATCH v1 09/16] ArmPlatformPkg: Fix Ecc error 10016 in LcdPlatformNullLib PierreGondois
2020-12-03 18:19 ` [PATCH v1 10/16] ArmPlatformPkg: Fix Ecc error 10014 in LcdGraphicsOutputDxe PierreGondois
2020-12-03 18:19 ` [PATCH v1 11/16] ArmPlatformPkg: Fix Ecc error 10014 in PL061GpioDxe PierreGondois
2020-12-03 18:19 ` [PATCH v1 12/16] ArmPlatformPkg: Fix Ecc error 10014 in SP805WatchdogDxe PierreGondois
2020-12-03 18:19 ` [PATCH v1 13/16] ArmPlatformPkg: Fix Ecc error 10006 in ArmPlatformPkg.dsc PierreGondois
2020-12-03 18:19 ` [PATCH v1 14/16] ArmPlatformPkg: Fix Ecc error 8001 in PrePi PierreGondois
2020-12-03 18:19 ` [PATCH v1 15/16] ArmPlatformPkg: Fix Ecc error 8005 PierreGondois
2020-12-09 15:09   ` Ard Biesheuvel
2020-12-03 18:19 ` [PATCH v1 16/16] ArmPlatformPkg: Fix cspell reported spelling/wording PierreGondois
2020-12-09 15:33 ` [PATCH v1 00/16] Fix Ecc reported errors in ArmPlatformPkg Ard Biesheuvel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox