soc/intel/meteorlake: Correct function naming

Renames fill_fsps_acoustic_params to fill_fspm_acoustic_params to align
with the naming conventions used for other FSP-M configuration
functions.

Change-Id: I0044c21a8f82dfa2308fade78adbd8bcf844cb63
Signed-off-by: Jeremy Compostella <jeremy.compostella@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/89351
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nicholas Sudsgaard <devel+coreboot@nsudsgaard.com>
Reviewed-by: Subrata Banik <subratabanik@google.com>
This commit is contained in:
Jeremy Compostella 2025-09-25 08:52:25 -07:00 committed by Jérémy Compostella
commit 7f8c442a09

View file

@ -394,7 +394,7 @@ static void fill_fspm_ibecc_params(FSP_M_CONFIG *m_cfg,
}
}
static void fill_fsps_acoustic_params(FSP_M_CONFIG *m_cfg,
static void fill_fspm_acoustic_params(FSP_M_CONFIG *m_cfg,
const struct soc_intel_meteorlake_config *config)
{
if (!config->enable_acoustic_noise_mitigation)
@ -431,7 +431,7 @@ static void soc_memory_init_params(FSP_M_CONFIG *m_cfg,
fill_fspm_trace_params,
fill_fspm_vr_config_params,
fill_fspm_ibecc_params,
fill_fsps_acoustic_params,
fill_fspm_acoustic_params,
};
for (size_t i = 0; i < ARRAY_SIZE(fill_fspm_params); i++)