Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/edk2/Include/Guid/Fdt.h
96339 views
1
/** @file
2
*
3
* Copyright (c) 2013-2014, ARM Limited. All rights reserved.
4
*
5
* SPDX-License-Identifier: BSD-2-Clause-Patent
6
*
7
**/
8
9
#ifndef __FDT_H__
10
#define __FDT_H__
11
12
#define FDT_TABLE_GUID \
13
{ 0xb1b621d5, 0xf19c, 0x41a5, { 0x83, 0x0b, 0xd9, 0x15, 0x2c, 0x69, 0xaa, 0xe0 } }
14
15
extern EFI_GUID gFdtTableGuid;
16
17
#define FDT_VARIABLE_GUID \
18
{ 0x25a4fd4a, 0x9703, 0x4ba9, { 0xa1, 0x90, 0xb7, 0xc8, 0x4e, 0xfb, 0x3e, 0x57 } }
19
20
extern EFI_GUID gFdtVariableGuid;
21
22
#endif /* __FDT_H__ */
23
24