aboutsummaryrefslogtreecommitdiff
path: root/common/event.c
diff options
context:
space:
mode:
authorJaehoon Chung <jh80.chung@samsung.com>2023-08-01 19:17:00 +0900
committerSimon Glass <sjg@chromium.org>2023-08-05 11:39:23 -0600
commitb49662083fea511360e9502b6a239cb038610397 (patch)
tree941aef6b2ed4ad9a929ff6bbac33d115d7e7f2d4 /common/event.c
parentd8a2d3b2901932179c5ee562c01473dd8cf77ae1 (diff)
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 <jh80.chung@samsung.com> Reviewed-by: Simon Glass <sjg@chromium.org> s/an/a/ : Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/event.c')
-rw-r--r--common/event.c2
1 files changed, 1 insertions, 1 deletions
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",