diff options
| author | Simon Glass <[email protected]> | 2022-09-06 20:26:52 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-09-29 16:07:57 -0400 |
| commit | f3543e69442ca393e52df253d9c5d45bc189d471 (patch) | |
| tree | 99423df56b15a01188099161332c6c8aed301972 /board | |
| parent | da79b2f25e5352a8e09b96ecef56df009f03c0b5 (diff) | |
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 <[email protected]>
Diffstat (limited to 'board')
| -rw-r--r-- | board/ti/ks2_evm/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/ti/ks2_evm/board.c b/board/ti/ks2_evm/board.c index 0c5c2c9146f..5ba3aa35a9f 100644 --- a/board/ti/ks2_evm/board.c +++ b/board/ti/ks2_evm/board.c @@ -64,9 +64,9 @@ int dram_init(void) return 0; } -struct image_header *spl_get_load_buffer(ssize_t offset, size_t size) +struct legacy_img_hdr *spl_get_load_buffer(ssize_t offset, size_t size) { - return (struct image_header *)(CONFIG_SYS_TEXT_BASE); + return (struct legacy_img_hdr *)(CONFIG_SYS_TEXT_BASE); } int board_init(void) |
