summaryrefslogtreecommitdiff
path: root/doc/develop
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2023-06-16 19:05:52 -0400
committerTom Rini <[email protected]>2023-06-16 19:05:52 -0400
commit1c30e10017ec8bcd0ffec0d8c7d17539ae73dfa7 (patch)
tree6120a7d1a99c25b50896a7d932d431145570f5a4 /doc/develop
parent2f4664f5c3edc55b18d8906f256a4c8e303243c0 (diff)
parent5669591dd8d2b21bc79237b161107300eb7f2b12 (diff)
Merge tag 'efi-2023-07-rc5' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2023-07-rc5 Documentation: * man-page for imxtract * correct EVT_DM_POST_INIT_F description UEFI: * bootm: don't call booti_setup for EFI images * simplify efi_disk_remove * fix tests that failed when executed repeatedly
Diffstat (limited to 'doc/develop')
-rw-r--r--doc/develop/event.rst4
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