diff options
author | Pierre Gondois <Pierre.Gondois@arm.com> | 2020-10-23 14:36:19 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-12-09 15:32:12 +0000 |
commit | 28978df0bdafce1d26ff337fd67ee6c3a5b3876e (patch) | |
tree | 7dc16481fee134e8d1a0de9573768b448747050a | |
parent | 1485e8bbc86e9a7e1954cfe5697fbd45d8e3b04e (diff) | |
download | edk2-28978df0bdafce1d26ff337fd67ee6c3a5b3876e.tar.gz edk2-28978df0bdafce1d26ff337fd67ee6c3a5b3876e.tar.bz2 edk2-28978df0bdafce1d26ff337fd67ee6c3a5b3876e.zip |
ArmPlatformPkg: Fix Ecc error 5007 in PL031RealTimeClockLib
This patch fixes the following Ecc reported error:
There should be no initialization of a variable as
part of its declaration
Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@arm.com>
-rw-r--r-- | ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.c b/ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.c index 75c95985d4..0df4ceb1cb 100644 --- a/ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.c +++ b/ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.c @@ -2,7 +2,7 @@ Implement EFI RealTimeClock runtime services via RTC Lib.
Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>
- Copyright (c) 2011 - 2014, ARM Ltd. All rights reserved.<BR>
+ Copyright (c) 2011 - 2020, Arm Limited. All rights reserved.<BR>
Copyright (c) 2019, Linaro Ltd. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
@@ -121,7 +121,7 @@ LibGetTime ( OUT EFI_TIME_CAPABILITIES *Capabilities
)
{
- EFI_STATUS Status = EFI_SUCCESS;
+ EFI_STATUS Status;
UINT32 EpochSeconds;
// Ensure Time is a valid pointer
|