aboutsummaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorSimon Glass2022-09-06 20:26:51 -0600
committerTom Rini2022-09-29 16:07:57 -0400
commitda79b2f25e5352a8e09b96ecef56df009f03c0b5 (patch)
treee88040faedb8a5eed07514292faedd03da2e2580 /boot
parentd9d7c20b731788c5c8018ce8e5c6e86bb01413df (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.c2
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;