summaryrefslogtreecommitdiff
path: root/fs/fat
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-09-17 18:00:09 +0300
committerSimon Glass <sjg@chromium.org>2022-09-25 17:30:05 +0300
commit8149b1500d805b56f2e3e42fb31c5554a2011745 (patch)
tree14738627c5576d3352d58df242fade4aec34c5f4 /fs/fat
parenta2a9317cbc396c19baea217e091960c56c13f2c7 (diff)
downloadu-boot-8149b1500d805b56f2e3e42fb31c5554a2011745.tar.xz
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 'fs/fat')
-rw-r--r--fs/fat/fat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fat/fat.c b/fs/fat/fat.c
index c64e253abd..a945904785 100644
--- a/fs/fat/fat.c
+++ b/fs/fat/fat.c
@@ -1145,7 +1145,7 @@ int file_fat_detectfs(void)
}
if (blk_enabled()) {
- printf("Interface: %s\n", blk_get_if_type_name(cur_dev->if_type));
+ printf("Interface: %s\n", blk_get_uclass_name(cur_dev->uclass_id));
printf(" Device %d: ", cur_dev->devnum);
dev_print(cur_dev);
}