dm: part: Rename some partition functions
Rename three partition functions so that they start with part_. This makes it clear what they relate to. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Stephen Warren <swarren@nvidia.com>
This commit is contained in:
@@ -22,8 +22,7 @@ int spl_load_image_ext(struct blk_desc *block_dev,
|
||||
header = (struct image_header *)(CONFIG_SYS_TEXT_BASE -
|
||||
sizeof(struct image_header));
|
||||
|
||||
if (get_partition_info(block_dev,
|
||||
partition, &part_info)) {
|
||||
if (part_get_info(block_dev, partition, &part_info)) {
|
||||
printf("spl: no partition table found\n");
|
||||
return -1;
|
||||
}
|
||||
@@ -71,8 +70,7 @@ int spl_load_image_ext_os(struct blk_desc *block_dev, int partition)
|
||||
disk_partition_t part_info = {};
|
||||
__maybe_unused char *file;
|
||||
|
||||
if (get_partition_info(block_dev,
|
||||
partition, &part_info)) {
|
||||
if (part_get_info(block_dev, partition, &part_info)) {
|
||||
printf("spl: no partition table found\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user