diff options
author | Tom Rini <trini@konsulko.com> | 2021-06-13 07:48:22 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-06-13 07:48:22 -0400 |
commit | 173c3bcd7dca47f1a8f7371a229681d20c7821cc (patch) | |
tree | 934108a106980e6688a8b71daf6a576bce6f6dd9 /common/image-fit.c | |
parent | e8f720ee1707b43a0e14ade87b40a1f84baeb2f3 (diff) | |
parent | 5abb694d6016eaf497c3d9a3ec79382e217e7508 (diff) |
Merge tag 'ti-v2021.10-next-v2' of https://source.denx.de/u-boot/custodians/u-boot-ti into next
- HSM re-architecture support for all K3 platforms
- AM64 USB support
- Driver model support for Davinci RTC
Diffstat (limited to 'common/image-fit.c')
-rw-r--r-- | common/image-fit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/image-fit.c b/common/image-fit.c index e614643fe39..0c5a05948d1 100644 --- a/common/image-fit.c +++ b/common/image-fit.c @@ -2143,7 +2143,7 @@ int fit_image_load(bootm_headers_t *images, ulong addr, /* perform any post-processing on the image data */ if (!host_build() && IS_ENABLED(CONFIG_FIT_IMAGE_POST_PROCESS)) - board_fit_image_post_process(&buf, &size); + board_fit_image_post_process(fit, noffset, &buf, &size); len = (ulong)size; |