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:
@@ -20,7 +20,7 @@ int common_diskboot(struct cmd_tbl *cmdtp, const char *intf, int argc,
|
||||
ulong cnt;
|
||||
struct disk_partition info;
|
||||
#if defined(CONFIG_LEGACY_IMAGE_FORMAT)
|
||||
image_header_t *hdr;
|
||||
struct legacy_img_hdr *hdr;
|
||||
#endif
|
||||
struct blk_desc *dev_desc;
|
||||
|
||||
@@ -68,7 +68,7 @@ int common_diskboot(struct cmd_tbl *cmdtp, const char *intf, int argc,
|
||||
switch (genimg_get_format((void *) addr)) {
|
||||
#if defined(CONFIG_LEGACY_IMAGE_FORMAT)
|
||||
case IMAGE_FORMAT_LEGACY:
|
||||
hdr = (image_header_t *) addr;
|
||||
hdr = (struct legacy_img_hdr *)addr;
|
||||
|
||||
bootstage_mark(BOOTSTAGE_ID_IDE_FORMAT);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user