diff options
| author | Heinrich Schuchardt <[email protected]> | 2024-06-10 10:00:01 +0200 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2024-06-10 11:43:37 +0200 |
| commit | 535321c2ea76de44896330040d2e43aa4645d026 (patch) | |
| tree | 04c9d624459f2693c76ed2eaf33d4ea48db95943 /cmd/eficonfig.c | |
| parent | e91b68fd6b83d6e4c862000630d240b339cc5a7b (diff) | |
efi_loader: rename struct efi_initrd_dp to efi_lo_dp_prefix
As we now also store device-tree device-paths in load options rename
struct efi_initrd_dp to efi_lo_dp_prefix.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'cmd/eficonfig.c')
| -rw-r--r-- | cmd/eficonfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/eficonfig.c b/cmd/eficonfig.c index 6108b4243ac..bea09e4ecc7 100644 --- a/cmd/eficonfig.c +++ b/cmd/eficonfig.c @@ -1401,7 +1401,7 @@ static efi_status_t eficonfig_edit_boot_option(u16 *varname, struct eficonfig_bo struct efi_device_path *initrd_device_dp = NULL; struct efi_device_path *fdt_device_dp = NULL; - const struct efi_initrd_dp initrd_prefix = { + const struct efi_lo_dp_prefix initrd_prefix = { .vendor = { { DEVICE_PATH_TYPE_MEDIA_DEVICE, @@ -1417,7 +1417,7 @@ static efi_status_t eficonfig_edit_boot_option(u16 *varname, struct eficonfig_bo } }; - const struct efi_initrd_dp fdt_prefix = { + const struct efi_lo_dp_prefix fdt_prefix = { .vendor = { { DEVICE_PATH_TYPE_MEDIA_DEVICE, |
