mirror of
https://xff.cz/git/u-boot/
synced 2025-09-30 06:51:28 +02:00
efi_loader: Remove unused diskid
That variable is defined and assigned a value in two functions but it's never used. Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
committed by
Heinrich Schuchardt
parent
6507ec20ba
commit
84b95e9189
@@ -561,11 +561,9 @@ static int efi_disk_create_raw(struct udevice *dev, efi_handle_t agent_handle)
|
|||||||
{
|
{
|
||||||
struct efi_disk_obj *disk;
|
struct efi_disk_obj *disk;
|
||||||
struct blk_desc *desc;
|
struct blk_desc *desc;
|
||||||
int diskid;
|
|
||||||
efi_status_t ret;
|
efi_status_t ret;
|
||||||
|
|
||||||
desc = dev_get_uclass_plat(dev);
|
desc = dev_get_uclass_plat(dev);
|
||||||
diskid = desc->devnum;
|
|
||||||
|
|
||||||
ret = efi_disk_add_dev(NULL, NULL, desc,
|
ret = efi_disk_add_dev(NULL, NULL, desc,
|
||||||
NULL, 0, &disk, agent_handle);
|
NULL, 0, &disk, agent_handle);
|
||||||
@@ -608,7 +606,6 @@ static int efi_disk_create_part(struct udevice *dev, efi_handle_t agent_handle)
|
|||||||
struct disk_part *part_data;
|
struct disk_part *part_data;
|
||||||
struct disk_partition *info;
|
struct disk_partition *info;
|
||||||
unsigned int part;
|
unsigned int part;
|
||||||
int diskid;
|
|
||||||
struct efi_handler *handler;
|
struct efi_handler *handler;
|
||||||
struct efi_device_path *dp_parent;
|
struct efi_device_path *dp_parent;
|
||||||
struct efi_disk_obj *disk;
|
struct efi_disk_obj *disk;
|
||||||
@@ -618,7 +615,6 @@ static int efi_disk_create_part(struct udevice *dev, efi_handle_t agent_handle)
|
|||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
desc = dev_get_uclass_plat(dev_get_parent(dev));
|
desc = dev_get_uclass_plat(dev_get_parent(dev));
|
||||||
diskid = desc->devnum;
|
|
||||||
|
|
||||||
part_data = dev_get_uclass_plat(dev);
|
part_data = dev_get_uclass_plat(dev);
|
||||||
part = part_data->partnum;
|
part = part_data->partnum;
|
||||||
|
Reference in New Issue
Block a user