]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
doc: event: Correct EVT_DM_POST_INIT_F description
authorBin Meng <bmeng@tinylab.org>
Mon, 12 Jun 2023 06:12:13 +0000 (14:12 +0800)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 16 Jun 2023 04:45:19 +0000 (06:45 +0200)
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>
doc/develop/event.rst

index 1c1c9ef7f1b48abbe69d56d684f8180967d36f69..cb09e9c85a9a3e307a6209d38d089b5635387ef3 100644 (file)
@@ -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