summaryrefslogtreecommitdiff
path: root/src/soc/intel/meteorlake/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/meteorlake/cpu.c')
-rw-r--r--src/soc/intel/meteorlake/cpu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/intel/meteorlake/cpu.c b/src/soc/intel/meteorlake/cpu.c
index e0ac726542..b299cc89cf 100644
--- a/src/soc/intel/meteorlake/cpu.c
+++ b/src/soc/intel/meteorlake/cpu.c
@@ -87,10 +87,10 @@ enum core_type get_soc_cpu_type(void)
return CPUID_CORE_TYPE_INTEL_CORE;
}
-void soc_get_scaling_factor(u16 *big_core_scal_factor, u16 *small_core_scal_factor)
+void soc_get_scaling_factor(u16 *perf_core_scal_factor, u16 *eff_core_scal_factor)
{
- *big_core_scal_factor = 125;
- *small_core_scal_factor = 100;
+ *perf_core_scal_factor = 125;
+ *eff_core_scal_factor = 100;
}
bool soc_is_nominal_freq_supported(void)