From 7f8c442a09b46e110a0c191160abcd4427ff341e Mon Sep 17 00:00:00 2001 From: Jeremy Compostella Date: Thu, 25 Sep 2025 08:52:25 -0700 Subject: [PATCH] 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/89351 Tested-by: build bot (Jenkins) Reviewed-by: Nicholas Sudsgaard Reviewed-by: Subrata Banik --- src/soc/intel/meteorlake/romstage/fsp_params.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soc/intel/meteorlake/romstage/fsp_params.c b/src/soc/intel/meteorlake/romstage/fsp_params.c index 57e56595a9..414c270dcd 100644 --- a/src/soc/intel/meteorlake/romstage/fsp_params.c +++ b/src/soc/intel/meteorlake/romstage/fsp_params.c @@ -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++)