diff options
author | Tom Rini <trini@konsulko.com> | 2023-12-08 19:03:03 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-12-08 19:03:03 -0500 |
commit | dd638467a4c9131e6732ce489d335b0309d8f13d (patch) | |
tree | e623d1a55a5ca200df5fc0ca9f0c14e4ef2d5e7e /cmd/efi_common.c | |
parent | 2f0282922b2c458eea7f85c500a948a587437b63 (diff) | |
parent | 6805b4dbad72a6e9180426c50f6db6e2681430c0 (diff) |
Merge tag 'efi-2024-01-rc5' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2024-01-rc5
Documentation:
* Update and correct support notes on clang
* sandbox: Fix VPL instructions
UEFI:
* Fix a bug in DisconnectController
* Provide better error messages for missing CONFIG_EFI_CAPSULE_ESL_FILE
* Create EFI memory reservations when booting via ACPI
* Make ACPI tables accessible in EFI app
Diffstat (limited to 'cmd/efi_common.c')
-rw-r--r-- | cmd/efi_common.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd/efi_common.c b/cmd/efi_common.c index f4056096cd3..1aa2351fcdf 100644 --- a/cmd/efi_common.c +++ b/cmd/efi_common.c @@ -17,10 +17,8 @@ void efi_show_tables(struct efi_system_table *systab) for (i = 0; i < systab->nr_tables; i++) { struct efi_configuration_table *tab = &systab->tables[i]; - char guid_str[37]; - uuid_bin_to_str(tab->guid.b, guid_str, 1); - printf("%p %pUl %s\n", tab->table, guid_str, + printf("%p %pUl %s\n", tab->table, tab->guid.b, uuid_guid_get_str(tab->guid.b) ?: "(unknown)"); } } |