summaryrefslogtreecommitdiff
path: root/disk
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-05 15:40:27 -0700
committerTom Rini <trini@konsulko.com>2023-02-10 07:41:39 -0500
commit0b11c3da6b362b24fdb3f46390b0adfc2fd71e19 (patch)
tree2638dc1655ec072283a7bb95dd52db9b99f97cbc /disk
parentbc2dba9603af5adb9b33e8e10dc95e9ef95a38f8 (diff)
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>
Diffstat (limited to 'disk')
-rw-r--r--disk/part_efi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/disk/part_efi.c b/disk/part_efi.c
index 18f7e58405..80a44dc9f0 100644
--- a/disk/part_efi.c
+++ b/disk/part_efi.c
@@ -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);