summaryrefslogtreecommitdiff
path: root/boot/bootm.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-09-07 05:26:51 +0300
committerTom Rini <trini@konsulko.com>2022-09-29 23:07:57 +0300
commitda79b2f25e5352a8e09b96ecef56df009f03c0b5 (patch)
treee88040faedb8a5eed07514292faedd03da2e2580 /boot/bootm.c
parentd9d7c20b731788c5c8018ce8e5c6e86bb01413df (diff)
downloadu-boot-da79b2f25e5352a8e09b96ecef56df009f03c0b5.tar.xz
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/bootm.c')
-rw-r--r--boot/bootm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/bootm.c b/boot/bootm.c
index 2b0dc0b36b..2e41d78372 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;