diff options
author | Bin Meng | 2023-06-12 14:12:13 +0800 |
---|---|---|
committer | Heinrich Schuchardt | 2023-06-16 06:45:19 +0200 |
commit | 268d25f3109f77ef0c61a05078b4762f804e0ba2 (patch) | |
tree | e16bac2a5dae5a0dcb0ae5140b05fa5b1acc1e0c /doc | |
parent | 4834bf1bc80a52421d4eff48dd5b7f89faf2d098 (diff) |
doc: event: Correct EVT_DM_POST_INIT_F description
EVT_DM_POST_INIT_F only works in U-Boot proper, not SPL.
Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Polish the wording a bit
Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/develop/event.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/develop/event.rst b/doc/develop/event.rst index 1c1c9ef7f1b..cb09e9c85a9 100644 --- a/doc/develop/event.rst +++ b/doc/develop/event.rst @@ -28,8 +28,8 @@ To declare a spy, use something like this:: } EVENT_SPY(EVT_DM_POST_INIT_F, snow_setup_cpus); -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). +This function is called when EVT_DM_POST_INIT_F is emitted, i.e. after the +driver model is initialized (in U-Boot proper before and after relocation). Debugging |