diff options
| author | Simon Glass <[email protected]> | 2022-09-06 20:26:52 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-09-29 16:07:57 -0400 |
| commit | f3543e69442ca393e52df253d9c5d45bc189d471 (patch) | |
| tree | 99423df56b15a01188099161332c6c8aed301972 /include/tee | |
| parent | da79b2f25e5352a8e09b96ecef56df009f03c0b5 (diff) | |
treewide: Drop image_header_t typedef
This is not needed and we should avoid typedefs. Use the struct instead
and rename it to indicate that it really is a legacy struct.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include/tee')
| -rw-r--r-- | include/tee/optee.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tee/optee.h b/include/tee/optee.h index 5412bc7386e..77729450bb6 100644 --- a/include/tee/optee.h +++ b/include/tee/optee.h @@ -30,7 +30,7 @@ struct optee_header { }; static inline uint32_t -optee_image_get_entry_point(const struct image_header *hdr) +optee_image_get_entry_point(const struct legacy_img_hdr *hdr) { struct optee_header *optee_hdr = (struct optee_header *)(hdr + 1); @@ -38,7 +38,7 @@ optee_image_get_entry_point(const struct image_header *hdr) } static inline uint32_t -optee_image_get_load_addr(const struct image_header *hdr) +optee_image_get_load_addr(const struct legacy_img_hdr *hdr) { return optee_image_get_entry_point(hdr) - sizeof(struct optee_header); } |
