aboutsummaryrefslogtreecommitdiff
path: root/cmd/lsblk.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-09-25 17:20:11 -0400
committerTom Rini <trini@konsulko.com>2022-09-25 17:20:11 -0400
commit9114b7cee817789ad59e0fb6d5cd57f50668b4e1 (patch)
treea6bd3d83314fee80b1b1a2e9a39df39d96a2dcc8 /cmd/lsblk.c
parent81da5042e514bfd27516d3530dde4d62a6708ca4 (diff)
parent22c80d5603ac4c58debc8c776b8f138e76cf5f7c (diff)
Merge tag 'dm-next-25sep22' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm into next
sandbox SCSI conversion to driver model final patch for blk improvements
Diffstat (limited to 'cmd/lsblk.c')
-rw-r--r--cmd/lsblk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/lsblk.c b/cmd/lsblk.c
index 6a1c8f5ef4..d214dafc3b 100644
--- a/cmd/lsblk.c
+++ b/cmd/lsblk.c
@@ -36,7 +36,7 @@ static int do_lsblk(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv
continue;
desc = dev_get_uclass_plat(udev);
printf("%c %s %u", i ? ',' : ':',
- blk_get_if_type_name(desc->if_type),
+ blk_get_uclass_name(desc->uclass_id),
desc->devnum);
i++;
}