diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-03-19 08:59:33 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-03-25 11:06:03 +0100 |
commit | 92b931b8ef3b08068f8911ecfd7482b3c4660320 (patch) | |
tree | 9cd758d8156461852c68bd883301ac0348bbecfe /include/efi_api.h | |
parent | e472ef8a3d5e94a0f0bc5ad50a4a86a67316e876 (diff) |
efi_loader: move struct efi_device_path to efi.h
Avoid forward declaration of struct efi_device_path.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'include/efi_api.h')
-rw-r--r-- | include/efi_api.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index c57868abbd..7f092538a0 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -557,12 +557,6 @@ struct efi_loaded_image { # define DEVICE_PATH_SUB_TYPE_INSTANCE_END 0x01 # define DEVICE_PATH_SUB_TYPE_END 0xff -struct efi_device_path { - u8 type; - u8 sub_type; - u16 length; -} __packed; - struct efi_mac_addr { u8 addr[32]; } __packed; |