From: Jaehoon Chung Date: Tue, 1 Aug 2023 10:17:00 +0000 (+0900) Subject: event: Fix a wrong type_name from dm_post_init to dm_post_init_f X-Git-Tag: v2025.01-rc5-pxa1908~898^2~2 X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-favicon.png?a=commitdiff_plain;h=b49662083fea511360e9502b6a239cb038610397;p=u-boot.git event: Fix a wrong type_name from dm_post_init to dm_post_init_f 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 Reviewed-by: Simon Glass s/an/a/ : Signed-off-by: Simon Glass --- diff --git a/common/event.c b/common/event.c index 20720c5283..3224e28122 100644 --- a/common/event.c +++ b/common/event.c @@ -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",