commit | bb7d3bb024317e7f313f2faae81bbd45c3fb1ca1 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Tue Sep 06 20:26:52 2022 -0600 |
committer | Tom Rini <trini@konsulko.com> | Thu Sep 29 16:07:57 2022 -0400 |
tree | 99423df56b15a01188099161332c6c8aed301972 | |
parent | 74578f5a84818da934d1b1628cf4f6cf2af1b3bd [diff] [blame] |
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 <sjg@chromium.org>
diff --git a/cmd/source.c b/cmd/source.c index 81e015b..698d9f8 100644 --- a/cmd/source.c +++ b/cmd/source.c
@@ -46,7 +46,7 @@ { ulong len; #if defined(CONFIG_LEGACY_IMAGE_FORMAT) - const image_header_t *hdr; + const struct legacy_img_hdr *hdr; #endif u32 *data; int verify;