mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
Correct SPL use of PARTITION_TYPE_GUID
This converts 1 usage of this option to the non-SPL form, since there is no SPL_PARTITION_TYPE_GUID defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
bc2dba9603
commit
0b11c3da6b
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ void part_print_efi(struct blk_desc *dev_desc)
|
|||
print_efiname(&gpt_pte[i]));
|
||||
printf("\tattrs:\t0x%016llx\n", gpt_pte[i].attributes.raw);
|
||||
uuid = (unsigned char *)gpt_pte[i].partition_type_guid.b;
|
||||
if (CONFIG_IS_ENABLED(PARTITION_TYPE_GUID))
|
||||
if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID))
|
||||
printf("\ttype:\t%pUl\n\t\t(%pUs)\n", uuid, uuid);
|
||||
else
|
||||
printf("\ttype:\t%pUl\n", uuid);
|
||||
|
|
Loading…
Add table
Reference in a new issue