aboutsummaryrefslogtreecommitdiff
path: root/disk
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2023-09-02 09:35:21 +0200
committerTom Rini <trini@konsulko.com>2023-09-11 16:27:49 -0400
commit782c7f1bdb0a25e1851a47ff1aba9f71162c2f9d (patch)
tree8ccdf5154e69b0079c34e86ad4be56c63448a477 /disk
parent7cc1d87d7e1e64d7bb280ead94c55a51c4f3ee63 (diff)
downloadu-boot-782c7f1bdb0a25e1851a47ff1aba9f71162c2f9d.zip
u-boot-782c7f1bdb0a25e1851a47ff1aba9f71162c2f9d.tar.gz
u-boot-782c7f1bdb0a25e1851a47ff1aba9f71162c2f9d.tar.bz2
part: rename disk_partition_type_uuid()
Rename disk_partition_type_uuid to disk_partition_type_guid. Provide function descriptions for the getter and setter. Fixes: bcd645428c34 ("part: Add accessors for struct disk_partition type_uuid") Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-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 39382c5..b7aef37 100644
--- a/disk/part_efi.c
+++ b/disk/part_efi.c
@@ -299,7 +299,7 @@ int part_get_info_efi(struct blk_desc *desc, int part,
}
if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID)) {
uuid_bin_to_str(gpt_pte[part - 1].partition_type_guid.b,
- (char *)disk_partition_type_uuid(info),
+ (char *)disk_partition_type_guid(info),
UUID_STR_FORMAT_GUID);
}