]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Include/Library/ArmGicArchLib.h
ArmPkg: Fix ordering of return type and EFIAPI specifier in OemMiscLib
[mirror_edk2.git] / ArmPkg / Include / Library / ArmGicArchLib.h
1 /** @file
2 *
3 * Copyright (c) 2015, Linaro Ltd. All rights reserved.
4 *
5 * SPDX-License-Identifier: BSD-2-Clause-Patent
6 *
7 **/
8
9 #ifndef __ARM_GIC_ARCH_LIB_H__
10 #define __ARM_GIC_ARCH_LIB_H__
11
12 //
13 // GIC definitions
14 //
15 typedef enum {
16 ARM_GIC_ARCH_REVISION_2,
17 ARM_GIC_ARCH_REVISION_3
18 } ARM_GIC_ARCH_REVISION;
19
20
21 ARM_GIC_ARCH_REVISION
22 EFIAPI
23 ArmGicGetSupportedArchRevision (
24 VOID
25 );
26
27 #endif