diff options
author | Simon Glass <sjg@chromium.org> | 2022-03-04 08:43:05 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-03-10 08:28:36 -0500 |
commit | 7fe32b3442f0d0e77a0768dcc1ee65fb352a080a (patch) | |
tree | 96a205669eeb9145d15eaec2f9bac5a53ea3c791 /include/event.h | |
parent | 42fdcebf859f93139d58defd5abef44dedb9b17a (diff) | |
download | u-boot-7fe32b3442f0d0e77a0768dcc1ee65fb352a080a.tar.gz |
event: Convert arch_cpu_init_dm() to use events
Instead of a special function, send an event after driver model is inited
and adjust the boards which use this function.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/event.h')
-rw-r--r-- | include/event.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/event.h b/include/event.h index 6b347e92f0..78a42374ac 100644 --- a/include/event.h +++ b/include/event.h @@ -20,6 +20,7 @@ enum event_t { EVT_TEST, /* Events related to driver model */ + EVT_DM_POST_INIT, EVT_DM_PRE_PROBE, EVT_DM_POST_PROBE, EVT_DM_PRE_REMOVE, |