summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCaleb Connolly <[email protected]>2024-08-30 13:34:31 +0100
committerHeinrich Schuchardt <[email protected]>2024-09-12 17:35:37 +0200
commit3cc3bc08f4669e5952e3dc649dcd13a19ca2a038 (patch)
treee78797198bb5059f4c4ed19cae1489fd695ea59a /tools
parent775f7657ba583d6bbd0b2833cd589247292a17be (diff)
efi: define struct efi_guid
This let's us forward declare efi_guid_t in the UUID code without pulling in efi.h Reviewed-by: Ilias Apalodimas <[email protected]> Signed-off-by: Caleb Connolly <[email protected]>
Diffstat (limited to 'tools')
-rw-r--r--tools/eficapsule.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/eficapsule.h b/tools/eficapsule.h
index 6efd07d2eb6..97d077536d5 100644
--- a/tools/eficapsule.h
+++ b/tools/eficapsule.h
@@ -24,7 +24,7 @@
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
-typedef struct {
+typedef struct efi_guid {
uint8_t b[16];
} efi_guid_t __aligned(8);