From b215b6034c4e75d8eb0a958574b7ec3d7754b180 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Tue, 6 Sep 2022 20:26:58 -0600 Subject: event: Pass the images to EVT_FT_FIXUP Pass the boot images along as well, in case the fixups need to look at them. Signed-off-by: Simon Glass --- boot/image-fdt.c | 1 + 1 file changed, 1 insertion(+) (limited to 'boot') diff --git a/boot/image-fdt.c b/boot/image-fdt.c index ca51796322d..884e089f2d8 100644 --- a/boot/image-fdt.c +++ b/boot/image-fdt.c @@ -669,6 +669,7 @@ int image_setup_libfdt(struct bootm_headers *images, void *blob, struct event_ft_fixup fixup; fixup.tree = oftree_default(); + fixup.images = images; ret = event_notify(EVT_FT_FIXUP, &fixup, sizeof(fixup)); if (ret) { printf("ERROR: fdt fixup event failed: %d\n", ret); -- cgit v1.3.1