REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the EmbeddedPkg 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>
		
			
				
	
	
		
			21 lines
		
	
	
		
			417 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			417 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /** @file
 | |
|   GUID for the HOB that contains the copy of the flattened device tree blob
 | |
| 
 | |
|   Copyright (C) 2014, Linaro Ltd.
 | |
| 
 | |
|   SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| 
 | |
| **/
 | |
| 
 | |
| #ifndef __FDT_HOB_H__
 | |
| #define __FDT_HOB_H__
 | |
| 
 | |
| #define FDT_HOB_GUID  {\
 | |
|           0x16958446, 0x19B7, 0x480B, \
 | |
|           { 0xB0, 0x47, 0x74, 0x85, 0xAD, 0x3F, 0x71, 0x6D } \
 | |
|         }
 | |
| 
 | |
| extern EFI_GUID  gFdtHobGuid;
 | |
| 
 | |
| #endif
 |