diff options
author | Simon Glass <sjg@chromium.org> | 2022-08-11 19:35:01 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-09-16 11:05:16 -0400 |
commit | ec8bdc914c8328993cee62e01b4107b802cf45cc (patch) | |
tree | cce42cf3f4efee4ef239560c0a3c8eeb0ec47110 /include/efi_loader.h | |
parent | ef4b66bcd189e0db142e257cea1d225833cdc3b1 (diff) | |
download | u-boot-ec8bdc914c8328993cee62e01b4107b802cf45cc.tar.gz |
blk: Drop if_typeWIP/2022-09-16-rationalize-the-block-interface
Use the uclass ID instead.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r-- | include/efi_loader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 6b63ae8ddee..fb35087ddb0 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -161,7 +161,7 @@ extern bool efi_st_keep_devices; /* EFI system partition */ extern struct efi_system_partition { - enum if_type if_type; + enum uclass_id if_type; int devnum; u8 part; } efi_system_partition; |