diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-09-04 13:56:01 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-09-05 23:18:51 +0200 |
commit | d0384d516043f9c9c28158827a113771c3247536 (patch) | |
tree | 923f63be1ecc34466a34cfa5129946b89596b9e3 /include/efi_api.h | |
parent | 4411652aead3509ce497e4598f533e2b7e4f4ba0 (diff) | |
download | u-boot-d0384d516043f9c9c28158827a113771c3247536.tar.gz |
efi_loader: correctly render CD-ROM device path nodes
Correct the name of the partition size component in struct
efi_device_path_cdrom_path.
Render entry, start, and size when converting a CD-ROM device path node to
text.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/efi_api.h')
-rw-r--r-- | include/efi_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index 7f7b67fa00..cb895f31e5 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -483,7 +483,7 @@ struct efi_device_path_cdrom_path { struct efi_device_path dp; u32 boot_entry; u64 partition_start; - u64 partition_end; + u64 partition_size; } __packed; struct efi_device_path_file_path { |