diff options
author | Rob Clark <robdclark@gmail.com> | 2017-09-13 18:05:29 -0400 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2017-09-20 10:32:00 +0200 |
commit | 9309a1b76ce4f18fe1d9fe48f2b1356ebc58b62f (patch) | |
tree | 9b2e0ed500059431e804ed7eb08200f81f0f0845 /include | |
parent | b66c60dde9d48889b93694326d40f7e5208cff25 (diff) | |
download | u-boot-9309a1b76ce4f18fe1d9fe48f2b1356ebc58b62f.tar.gz u-boot-9309a1b76ce4f18fe1d9fe48f2b1356ebc58b62f.tar.xz u-boot-9309a1b76ce4f18fe1d9fe48f2b1356ebc58b62f.zip |
efi_loader: drop redundant efi_device_path_protocol
This is really the same thing as the efi_device_path struct.
Signed-off-by: Rob Clark <robdclark@gmail.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/efi_api.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index 4e27c82129..ac58fd58de 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -487,22 +487,14 @@ struct efi_console_control_protocol EFI_GUID(0x8b843e20, 0x8132, 0x4852, \ 0x90, 0xcc, 0x55, 0x1a, 0x4e, 0x4a, 0x7f, 0x1c) -struct efi_device_path_protocol -{ - uint8_t type; - uint8_t sub_type; - uint16_t length; - uint8_t data[]; -}; - struct efi_device_path_to_text_protocol { uint16_t *(EFIAPI *convert_device_node_to_text)( - struct efi_device_path_protocol *device_node, + struct efi_device_path *device_node, bool display_only, bool allow_shortcuts); uint16_t *(EFIAPI *convert_device_path_to_text)( - struct efi_device_path_protocol *device_path, + struct efi_device_path *device_path, bool display_only, bool allow_shortcuts); }; |