diff options
author | Sughosh Ganu | 2022-10-21 18:16:01 +0530 |
---|---|---|
committer | Tom Rini | 2022-10-31 14:47:32 -0400 |
commit | 467bad5e368abfb8bca218b988567799e53f9e03 (patch) | |
tree | f6ab1f91224b87fbb07e1a30d9977fc68e77d7f5 /common/event.c | |
parent | 95b5a7de30f6c2f6c38ac4919442c7d8d6fb86ce (diff) |
event: Add an event for main_loop
Add an event type EVT_MAIN_LOOP that can be used for registering
events that need to be run after the platform has been initialised and
before the main_loop function is called.
Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Acked-by: Etienne Carriere <etienne.carriere@linaro.org>
Diffstat (limited to 'common/event.c')
-rw-r--r-- | common/event.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/event.c b/common/event.c index 3e345509783..231b9e6ffdd 100644 --- a/common/event.c +++ b/common/event.c @@ -38,6 +38,9 @@ const char *const type_name[] = { /* fdt hooks */ "ft_fixup", + + /* main loop events */ + "main_loop", }; _Static_assert(ARRAY_SIZE(type_name) == EVT_COUNT, "event type_name size"); |