]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
event: Fix a wrong type_name from dm_post_init to dm_post_init_f
authorJaehoon Chung <jh80.chung@samsung.com>
Tue, 1 Aug 2023 10:17:00 +0000 (19:17 +0900)
committerSimon Glass <sjg@chromium.org>
Sat, 5 Aug 2023 17:39:23 +0000 (11:39 -0600)
DM_POST_INIT was changed to DM_POST_INIT_F.
To debug correct message, change type_name from dm_post_init to
dm_post_init_f.

Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
s/an/a/ :
Signed-off-by: Simon Glass <sjg@chromium.org>
common/event.c

index 20720c52839e1233ddc91630653186a55c3af325..3224e2812224da85b0b61c0f3d758e4427bfe577 100644 (file)
@@ -27,7 +27,7 @@ const char *const type_name[] = {
        "test",
 
        /* Events related to driver model */
-       "dm_post_init",
+       "dm_post_init_f",
        "dm_pre_probe",
        "dm_post_probe",
        "dm_pre_remove",