commit f4bbd7b9faa4 ("efi_loader: Separate device path into its own header")
split some function declarations to their own header file. Remove two
remaining duplicates efi_dp_from_lo() and efi_dp_concat()Signed-off-by: Ilias Apalodimas <[email protected]> --- include/efi_loader.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/efi_loader.h b/include/efi_loader.h index 3a4d502631c5..ef25124fd84b 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -1026,11 +1026,6 @@ struct efi_load_option { const u8 *optional_data; }; -struct efi_device_path *efi_dp_from_lo(struct efi_load_option *lo, - const efi_guid_t *guid); -struct efi_device_path *efi_dp_concat(const struct efi_device_path *dp1, - const struct efi_device_path *dp2, - size_t split_end_node); struct efi_device_path *search_gpt_dp_node(struct efi_device_path *device_path); efi_status_t efi_deserialize_load_option(struct efi_load_option *lo, u8 *data, efi_uintn_t *size); -- 2.43.0
