Files
system76-edk2/ArmPkg/Include/Library/ArmGenericTimerCounterLib.h
Pierre Gondois cc15a619a6 ArmPkg: Fix Ecc error 8003
This patch fixes the following Ecc reported error:
The #ifndef at the start of an include file should have
one postfix underscore, and no prefix underscore character

Some include guards have been modified to match the name of the
header file. Some comments have also been added on the closing
'#endif'.

Cc: Bret Barkelew <bret.barkelew@microsoft.com>
Cc: Sean Brogan <sean.brogan@microsoft.com>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Sami Mujawar <sami.mujawar@arm.com>
Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
2021-04-28 12:03:51 +00:00

86 lines
1.1 KiB
C

/** @file
Copyright (c) 2011 - 2014, ARM Ltd. All rights reserved.<BR>
Copyright (c) 2014, Linaro Ltd. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef ARM_GENERIC_TIMER_COUNTER_LIB_H_
#define ARM_GENERIC_TIMER_COUNTER_LIB_H_
VOID
EFIAPI
ArmGenericTimerEnableTimer (
VOID
);
VOID
EFIAPI
ArmGenericTimerReenableTimer (
VOID
);
VOID
EFIAPI
ArmGenericTimerDisableTimer (
VOID
);
VOID
EFIAPI
ArmGenericTimerSetTimerFreq (
IN UINTN FreqInHz
);
UINTN
EFIAPI
ArmGenericTimerGetTimerFreq (
VOID
);
VOID
EFIAPI
ArmGenericTimerSetTimerVal (
IN UINTN Value
);
UINTN
EFIAPI
ArmGenericTimerGetTimerVal (
VOID
);
UINT64
EFIAPI
ArmGenericTimerGetSystemCount (
VOID
);
UINTN
EFIAPI
ArmGenericTimerGetTimerCtrlReg (
VOID
);
VOID
EFIAPI
ArmGenericTimerSetTimerCtrlReg (
UINTN Value
);
UINT64
EFIAPI
ArmGenericTimerGetCompareVal (
VOID
);
VOID
EFIAPI
ArmGenericTimerSetCompareVal (
IN UINT64 Value
);
#endif // ARM_GENERIC_TIMER_COUNTER_LIB_H_