Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
cab2b183
"plugins/vscode:/vscode.git/clone" did not exist on "7949a1cd8d69e7a79cbf20294cf41662aff15058"
Commit
cab2b183
authored
Mar 18, 2021
by
Madhukar Pappireddy
Committed by
TrustedFirmware Code Review
Mar 18, 2021
Browse files
Merge "tools_share/uuid: Add EFI_GUID representation" into integration
parents
0888fcf2
e831923f
Changes
1
Show whitespace changes
Inline
Side-by-side
include/tools_share/uuid.h
View file @
cab2b183
...
@@ -56,8 +56,16 @@ struct uuid {
...
@@ -56,8 +56,16 @@ struct uuid {
uint8_t
node
[
_UUID_NODE_LEN
];
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
{
union
uuid_helper_t
{
struct
uuid
uuid_struct
;
struct
uuid
uuid_struct
;
struct
efi_guid
efi_guid
;
uint32_t
word
[
4
];
uint32_t
word
[
4
];
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment