]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
efi_loader: dbginfodump: use guid definition
authorVincent Stehlé <vincent.stehle@arm.com>
Mon, 13 Oct 2025 14:21:08 +0000 (16:21 +0200)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Sat, 18 Oct 2025 09:59:53 +0000 (11:59 +0200)
Use the Debug Image Info Table GUID definition from efi_api.h instead or
redefining it locally.

Signed-off-by: Vincent Stehlé <vincent.stehle@arm.com>
Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
Cc: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Cc: Tom Rini <trini@konsulko.com>
Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
lib/efi_loader/dbginfodump.c

index adbbd5060cce822150fff2610c1b999013c99460..55186bd03f40f6fee16d45600f77cdf574aad486 100644 (file)
@@ -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 {