diff --git a/src/soc/intel/pantherlake/romstage/fsp_params.c b/src/soc/intel/pantherlake/romstage/fsp_params.c index ba6c110f2e..30b4eac48a 100644 --- a/src/soc/intel/pantherlake/romstage/fsp_params.c +++ b/src/soc/intel/pantherlake/romstage/fsp_params.c @@ -356,8 +356,8 @@ void platform_display_early_shutdown_notification(void *arg) } #endif -static void fill_fsps_acoustic_params(FSP_M_CONFIG *m_cfg, - const struct soc_intel_pantherlake_config *config) +static void fill_fspm_acoustic_params(FSP_M_CONFIG *m_cfg, + const struct soc_intel_pantherlake_config *config) { if (!config->enable_acoustic_noise_mitigation) return; @@ -370,7 +370,6 @@ static void fill_fsps_acoustic_params(FSP_M_CONFIG *m_cfg, } } - static void soc_memory_init_params(FSP_M_CONFIG *m_cfg, const struct soc_intel_pantherlake_config *config) { @@ -392,7 +391,7 @@ static void soc_memory_init_params(FSP_M_CONFIG *m_cfg, fill_fspm_trace_params, fill_fspm_thermal_params, fill_fspm_vr_config_params, - fill_fsps_acoustic_params, + fill_fspm_acoustic_params, }; for (size_t i = 0; i < ARRAY_SIZE(fill_fspm_params); i++)