REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the ArmPkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Andrew Fish <afish@apple.com>
		
			
				
	
	
		
			27 lines
		
	
	
		
			432 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			432 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_
 |