aboutsummaryrefslogtreecommitdiff
path: root/cmd/lsblk.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-09-17 09:00:09 -0600
committerSimon Glass <sjg@chromium.org>2022-09-25 08:30:05 -0600
commit8149b1500d805b56f2e3e42fb31c5554a2011745 (patch)
tree14738627c5576d3352d58df242fade4aec34c5f4 /cmd/lsblk.c
parenta2a9317cbc396c19baea217e091960c56c13f2c7 (diff)
downloadu-boot-8149b1500d805b56f2e3e42fb31c5554a2011745.zip
u-boot-8149b1500d805b56f2e3e42fb31c5554a2011745.tar.gz
u-boot-8149b1500d805b56f2e3e42fb31c5554a2011745.tar.bz2
blk: Rename if_type to uclass_id
Use the word 'uclass' instead of 'if_type' to complete the conversion. Signed-off-by: Simon Glass <sjg@chromium.org>
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 6a1c8f5..d214daf 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++;
}