mirror of
https://github.com/u-boot/u-boot.git
synced 2025-01-06 10:43:25 +08:00
efi_loader: efi_disk_register: correctly determine if_type_name
The interface type name can be used to look up the interface type. Don't confound it with the driver name which may be different. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
5e55543e65
commit
9bfca9f98a
@ -330,7 +330,7 @@ int efi_disk_register(void)
|
||||
dev;
|
||||
uclass_next_device_check(&dev)) {
|
||||
struct blk_desc *desc = dev_get_uclass_platdata(dev);
|
||||
const char *if_typename = dev->driver->name;
|
||||
const char *if_typename = blk_get_if_type_name(desc->if_type);
|
||||
|
||||
printf("Scanning disk %s...\n", dev->name);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user