summaryrefslogtreecommitdiff
path: root/zephyr/program/skyrim/frostflow/src/usb_mux_config.c
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/program/skyrim/frostflow/src/usb_mux_config.c')
-rw-r--r--zephyr/program/skyrim/frostflow/src/usb_mux_config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/zephyr/program/skyrim/frostflow/src/usb_mux_config.c b/zephyr/program/skyrim/frostflow/src/usb_mux_config.c
index b3d8c61f2e..99a665cadd 100644
--- a/zephyr/program/skyrim/frostflow/src/usb_mux_config.c
+++ b/zephyr/program/skyrim/frostflow/src/usb_mux_config.c
@@ -189,7 +189,7 @@ test_export_static void board_resume_change(struct ap_power_ev_callback *cb,
default:
return;
- case AP_POWER_RESUME:
+ case AP_POWER_STARTUP:
/* Any retimer tuning can be done after the retimer turns on */
hook_call_deferred(&baseboard_a1_retimer_setup_data, 20 * MSEC);
break;
@@ -201,7 +201,7 @@ void board_callback_init(void)
static struct ap_power_ev_callback cb;
/* Setup a resume callback */
- ap_power_ev_init_callback(&cb, board_resume_change, AP_POWER_RESUME);
+ ap_power_ev_init_callback(&cb, board_resume_change, AP_POWER_STARTUP);
ap_power_ev_add_callback(&cb);
}
DECLARE_HOOK(HOOK_INIT, board_callback_init, HOOK_PRIO_DEFAULT);