Commit cab2b183 authored by Madhukar Pappireddy's avatar Madhukar Pappireddy Committed by TrustedFirmware Code Review
Browse files

Merge "tools_share/uuid: Add EFI_GUID representation" into integration

parents 0888fcf2 e831923f
......@@ -56,8 +56,16 @@ struct uuid {
uint8_t node[_UUID_NODE_LEN];
};
struct efi_guid {
uint32_t time_low;
uint16_t time_mid;
uint16_t time_hi_and_version;
uint8_t clock_seq_and_node[8];
};
union uuid_helper_t {
struct uuid uuid_struct;
struct efi_guid efi_guid;
uint32_t word[4];
};
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment