mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
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>
This commit is contained in:
parent
da79b2f25e
commit
f3543e6944
55 changed files with 179 additions and 175 deletions
|
@ -327,17 +327,17 @@ static int splash_load_fit(struct splash_location *location, u32 bmp_load_addr)
|
|||
int external_splash_addr;
|
||||
int external_splash_size;
|
||||
bool is_splash_external = false;
|
||||
struct image_header *img_header;
|
||||
struct legacy_img_hdr *img_header;
|
||||
const u32 *fit_header;
|
||||
u32 fit_size;
|
||||
const size_t header_size = sizeof(struct image_header);
|
||||
const size_t header_size = sizeof(struct legacy_img_hdr);
|
||||
|
||||
/* Read in image header */
|
||||
res = splash_storage_read_raw(location, bmp_load_addr, header_size);
|
||||
if (res < 0)
|
||||
return res;
|
||||
|
||||
img_header = (struct image_header *)bmp_load_addr;
|
||||
img_header = (struct legacy_img_hdr *)bmp_load_addr;
|
||||
if (image_get_magic(img_header) != FDT_MAGIC) {
|
||||
printf("Could not find FDT magic\n");
|
||||
return -EINVAL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue