Skip to content

Commit 2207726

Browse files
committed
Merge back cpufreq material for 6.13
2 parents 92447aa + d90adb5 commit 2207726

23 files changed

+118
-159
lines changed

drivers/cpufreq/acpi-cpufreq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,7 @@ static struct platform_driver acpi_cpufreq_platdrv = {
10281028
.driver = {
10291029
.name = "acpi-cpufreq",
10301030
},
1031-
.remove_new = acpi_cpufreq_remove,
1031+
.remove = acpi_cpufreq_remove,
10321032
};
10331033

10341034
static int __init acpi_cpufreq_init(void)

drivers/cpufreq/amd-pstate-ut.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,10 @@ static void amd_pstate_ut_check_freq(u32 index)
227227
goto skip_test;
228228
}
229229

230-
if (cpudata->min_freq != policy->min) {
230+
if (cpudata->lowest_nonlinear_freq != policy->min) {
231231
amd_pstate_ut_cases[index].result = AMD_PSTATE_UT_RESULT_FAIL;
232-
pr_err("%s cpu%d cpudata_min_freq=%d policy_min=%d, they should be equal!\n",
233-
__func__, cpu, cpudata->min_freq, policy->min);
232+
pr_err("%s cpu%d cpudata_lowest_nonlinear_freq=%d policy_min=%d, they should be equal!\n",
233+
__func__, cpu, cpudata->lowest_nonlinear_freq, policy->min);
234234
goto skip_test;
235235
}
236236

0 commit comments

Comments
 (0)