diff options
| author | Vincent Stehlé <[email protected]> | 2025-10-13 16:21:08 +0200 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2025-10-18 11:59:53 +0200 |
| commit | ac59ac1b7cfe25dd09164cbe3b29c470474a8dad (patch) | |
| tree | bcfcd9812adb4f582214ffd3a908b8f070954f1d /lib | |
| parent | 3e865cfffc404d3a1ed9deddcb78bbffe6b53575 (diff) | |
efi_loader: dbginfodump: use guid definition
Use the Debug Image Info Table GUID definition from efi_api.h instead or
redefining it locally.
Signed-off-by: Vincent Stehlé <[email protected]>
Cc: Heinrich Schuchardt <[email protected]>
Cc: Ilias Apalodimas <[email protected]>
Cc: Tom Rini <[email protected]>
Reviewed-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/efi_loader/dbginfodump.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/efi_loader/dbginfodump.c b/lib/efi_loader/dbginfodump.c index adbbd5060cc..55186bd03f4 100644 --- a/lib/efi_loader/dbginfodump.c +++ b/lib/efi_loader/dbginfodump.c @@ -24,10 +24,8 @@ static efi_guid_t guid_device_path_to_text_protocol = static struct efi_device_path_to_text_protocol *device_path_to_text; -/* EFI_DEBUG_IMAGE_INFO_TABLE_GUID */ static const efi_guid_t dbg_info_guid = - EFI_GUID(0x49152E77, 0x1ADA, 0x4764, 0xB7, 0xA2, - 0x7A, 0xFE, 0xFE, 0xD9, 0x5E, 0x8B); + EFI_DEBUG_IMAGE_INFO_TABLE_GUID; /* EFI_DEBUG_IMAGE_INFO_NORMAL */ struct dbg_info { |
