FdtHob.h 416 B

1234567891011121314151617181920
  1. /** @file
  2. GUID for the HOB that contains the copy of the flattened device tree blob
  3. Copyright (C) 2014, Linaro Ltd.
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef __FDT_HOB_H__
  7. #define __FDT_HOB_H__
  8. #define FDT_HOB_GUID { \
  9. 0x16958446, 0x19B7, 0x480B, \
  10. { 0xB0, 0x47, 0x74, 0x85, 0xAD, 0x3F, 0x71, 0x6D } \
  11. }
  12. extern EFI_GUID gFdtHobGuid;
  13. #endif