summaryrefslogtreecommitdiff
path: root/include/efi_loader.h
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-09-26 05:27:56 +0200
committerAlexander Graf <agraf@suse.de>2018-12-02 21:59:36 +0100
commitd39646a38b504c377b5bcf282a2a9407f99b5f57 (patch)
treec209137981e665ecf5a176246e49c5ec8bbef4b3 /include/efi_loader.h
parentfae0118e7ae3a209b30205f02e8349c36ec0dbd9 (diff)
efi_loader: rename parent to header
Rename the component parent of some EFI objects to header. This avoids misunderstandings. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r--include/efi_loader.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h
index 1c79905aac..7a8aa2913a 100644
--- a/include/efi_loader.h
+++ b/include/efi_loader.h
@@ -193,10 +193,15 @@ struct efi_object {
/**
* struct efi_loaded_image_obj - handle of a loaded image
+ *
+ * @header: EFI object header
+ * @reloc_base: base address for the relocated image
+ * @reloc_size: size of the relocated image
+ * @exit_jmp: long jump buffer for returning form started image
+ * @entry: entry address of the relocated image
*/
struct efi_loaded_image_obj {
- /* Generic EFI object parent class data */
- struct efi_object parent;
+ struct efi_object header;
void *reloc_base;
aligned_u64 reloc_size;
efi_status_t exit_status;