]> Git Repo - J-u-boot.git/blobdiff - common/event.c
Merge tag 'v2023.10-rc4' into next
[J-u-boot.git] / common / event.c
index 7e2590eb04000b53b4444cd147ece20fb4d6c3cf..d11b37a1d802a9d1480d2211a70a07ed7f4b08ea 100644 (file)
@@ -28,6 +28,7 @@ const char *const type_name[] = {
 
        /* Events related to driver model */
        "dm_post_init_f",
+       "dm_post_init_r",
        "dm_pre_probe",
        "dm_post_probe",
        "dm_pre_remove",
@@ -35,6 +36,8 @@ const char *const type_name[] = {
 
        /* init hooks */
        "misc_init_f",
+       "fsp_init_r",
+       "last_stage_init",
 
        /* Fpga load hook */
        "fpga_load",
@@ -49,7 +52,7 @@ const char *const type_name[] = {
 _Static_assert(ARRAY_SIZE(type_name) == EVT_COUNT, "event type_name size");
 #endif
 
-static const char *event_type_name(enum event_t type)
+const char *event_type_name(enum event_t type)
 {
 #if CONFIG_IS_ENABLED(EVENT_DEBUG)
        return type_name[type];
This page took 0.024117 seconds and 4 git commands to generate.