From: Simon Glass Date: Fri, 4 Mar 2022 15:43:02 +0000 (-0700) Subject: event: Set up the event system on start-up X-Git-Tag: v2022.07~124^2~19^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5a4219043d659514316e41d3d09866030c773e78;p=platform%2Fkernel%2Fu-boot.git event: Set up the event system on start-up Call event_init() before relocation to get the event system running. Signed-off-by: Simon Glass --- diff --git a/common/board_f.c b/common/board_f.c index a687600..e36bdbc 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include @@ -828,6 +829,7 @@ static const init_fnc_t init_sequence_f[] = { initf_malloc, log_init, initf_bootstage, /* uses its own timer, so does not need DM */ + event_init, #ifdef CONFIG_BLOBLIST bloblist_init, #endif