diff options
| author | Ilias Apalodimas <ilias.apalodimas@linaro.org> | 2026-08-31 23:42:51 +0300 |
|---|---|---|
| committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2026-09-07 10:39:35 +0200 |
| commit | 8a0ef2af0ee317c08a99d7091e0353b5cb9ede44 (patch) | |
| tree | 81de1424c3c61d266879ce87516518ae4ef68f6f | |
| parent | f866a44211bc5f7eb1f502a0e500a8da7956b4ce (diff) | |
| download | u-boot-8a0ef2af0ee317c08a99d7091e0353b5cb9ede44.tar.gz u-boot-8a0ef2af0ee317c08a99d7091e0353b5cb9ede44.zip | |
efi_loader: Remove duplicate declarations
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 <ilias.apalodimas@linaro.org>
Reviewed-by: Balaji Selvanathan <balaji.selvanathan@oss.qualcomm.com>
| -rw-r--r-- | include/efi_loader.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 3a4d502631c..ef25124fd84 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); |
