aboutsummaryrefslogtreecommitdiff
path: root/lib/efi_loader/efi_device_path.c
diff options
context:
space:
mode:
authorMasahisa Kojima <masahisa.kojima@linaro.org>2022-06-19 13:55:59 +0900
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-07-13 20:07:07 +0200
commit9897350c52196736cce1a601b172fb5ea14a75c1 (patch)
treefc1c997ffe88ee8e8ce383bf7c076553c7697f3f /lib/efi_loader/efi_device_path.c
parent34a026a891ef7c51194e9926cb9212fa811cb212 (diff)
downloadu-boot-9897350c52196736cce1a601b172fb5ea14a75c1.zip
u-boot-9897350c52196736cce1a601b172fb5ea14a75c1.tar.gz
u-boot-9897350c52196736cce1a601b172fb5ea14a75c1.tar.bz2
efi_loader: expose END device path node
This commit exposes the END device path node. Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org> Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'lib/efi_loader/efi_device_path.c')
-rw-r--r--lib/efi_loader/efi_device_path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_device_path.c b/lib/efi_loader/efi_device_path.c
index 2493d74..ebffb77 100644
--- a/lib/efi_loader/efi_device_path.c
+++ b/lib/efi_loader/efi_device_path.c
@@ -30,7 +30,7 @@ const efi_guid_t efi_guid_virtio_dev = U_BOOT_VIRTIO_DEV_GUID;
#endif
/* template END node: */
-static const struct efi_device_path END = {
+const struct efi_device_path END = {
.type = DEVICE_PATH_TYPE_END,
.sub_type = DEVICE_PATH_SUB_TYPE_END,
.length = sizeof(END),