mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-20 20:04:46 +00:00
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>
This commit is contained in:
parent
4834bf1bc8
commit
268d25f310
1 changed files with 2 additions and 2 deletions
|
@ -28,8 +28,8 @@ To declare a spy, use something like this::
|
||||||
}
|
}
|
||||||
EVENT_SPY(EVT_DM_POST_INIT_F, snow_setup_cpus);
|
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
|
This function is called when EVT_DM_POST_INIT_F is emitted, i.e. after the
|
||||||
model is inited (in SPL, or in U-Boot proper before and after relocation).
|
driver model is initialized (in U-Boot proper before and after relocation).
|
||||||
|
|
||||||
|
|
||||||
Debugging
|
Debugging
|
||||||
|
|
Loading…
Add table
Reference in a new issue