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>
28 lines
434 B
C
28 lines
434 B
C
/** @file
|
|
*
|
|
* Copyright (c) 2015, Linaro Ltd. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
*
|
|
**/
|
|
|
|
#ifndef ARM_GIC_ARCH_LIB_H_
|
|
#define ARM_GIC_ARCH_LIB_H_
|
|
|
|
//
|
|
// GIC definitions
|
|
//
|
|
typedef enum {
|
|
ARM_GIC_ARCH_REVISION_2,
|
|
ARM_GIC_ARCH_REVISION_3
|
|
} ARM_GIC_ARCH_REVISION;
|
|
|
|
|
|
ARM_GIC_ARCH_REVISION
|
|
EFIAPI
|
|
ArmGicGetSupportedArchRevision (
|
|
VOID
|
|
);
|
|
|
|
#endif // ARM_GIC_ARCH_LIB_H_
|