diff options
author | Simon Glass | 2022-09-06 20:26:51 -0600 |
---|---|---|
committer | Tom Rini | 2022-09-29 16:07:57 -0400 |
commit | da79b2f25e5352a8e09b96ecef56df009f03c0b5 (patch) | |
tree | e88040faedb8a5eed07514292faedd03da2e2580 /boot | |
parent | d9d7c20b731788c5c8018ce8e5c6e86bb01413df (diff) |
treewide: Drop image_info_t typedef
This is not needed and we should avoid typedefs. Use the struct instead.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'boot')
-rw-r--r-- | boot/bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/bootm.c b/boot/bootm.c index 2b0dc0b36bc..2e41d783723 100644 --- a/boot/bootm.c +++ b/boot/bootm.c @@ -399,7 +399,7 @@ static int handle_decomp_error(int comp_type, size_t uncomp_size, #ifndef USE_HOSTCC static int bootm_load_os(struct bootm_headers *images, int boot_progress) { - image_info_t os = images->os; + struct image_info os = images->os; ulong load = os.load; ulong load_end; ulong blob_start = os.start; |