summaryrefslogtreecommitdiff
path: root/doc/develop
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2023-05-11 08:40:33 -0400
committerTom Rini <[email protected]>2023-05-11 08:40:33 -0400
commite94fbdd2729fdcd570035d43f67adda8e0dfc115 (patch)
treefc4d5d6f989618994e0af5bb61f9918e4c8a7478 /doc/develop
parent0a9a4384c1483a88776bca38e28f09be51161034 (diff)
parentb982f89c583c6c03f4d1f94d29991ccf691a0f7c (diff)
Merge https://source.denx.de/u-boot/custodians/u-boot-x86
- Various fixes for Google chromebooks - Various minor enhancements for coreboot
Diffstat (limited to 'doc/develop')
-rw-r--r--doc/develop/event.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/develop/event.rst b/doc/develop/event.rst
index e60cbf65691..1c1c9ef7f1b 100644
--- a/doc/develop/event.rst
+++ b/doc/develop/event.rst
@@ -11,7 +11,7 @@ block device is probed.
Rather than using weak functions and direct calls across subsystemss, it is
often easier to use an event.
-An event consists of a type (e.g. EVT_DM_POST_INIT) and some optional data,
+An event consists of a type (e.g. EVT_DM_POST_INIT_F) and some optional data,
in `union event_data`. An event spy can be created to watch for events of a
particular type. When the event is created, it is sent to each spy in turn.
@@ -26,9 +26,9 @@ To declare a spy, use something like this::
/* do something */
return 0;
}
- EVENT_SPY(EVT_DM_POST_INIT, snow_setup_cpus);
+ EVENT_SPY(EVT_DM_POST_INIT_F, snow_setup_cpus);
-Your function is called when EVT_DM_POST_INIT is emitted, i.e. after driver
+Your function is called when EVT_DM_POST_INIT_F is emitted, i.e. after driver
model is inited (in SPL, or in U-Boot proper before and after relocation).