43 lines
1.1 KiB
Diff
43 lines
1.1 KiB
Diff
From 55bcae033b08b1b926f927616cca17242cfcfe59 Mon Sep 17 00:00:00 2001
|
|
From: Mario Limonciello <mario.limonciello@amd.com>
|
|
Date: Thu, 5 Dec 2024 16:28:46 -0600
|
|
Subject: cpufreq/amd-pstate: Drop ret variable from
|
|
amd_pstate_set_energy_pref_index()
|
|
|
|
The ret variable is not necessary.
|
|
|
|
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
|
|
---
|
|
drivers/cpufreq/amd-pstate.c | 10 +++-------
|
|
1 file changed, 3 insertions(+), 7 deletions(-)
|
|
|
|
--- a/drivers/cpufreq/amd-pstate.c
|
|
+++ b/drivers/cpufreq/amd-pstate.c
|
|
@@ -348,13 +348,11 @@ static int shmem_set_epp(struct amd_cpud
|
|
static int amd_pstate_set_energy_pref_index(struct amd_cpudata *cpudata,
|
|
int pref_index)
|
|
{
|
|
- int epp = -EINVAL;
|
|
- int ret;
|
|
+ int epp;
|
|
|
|
if (!pref_index)
|
|
epp = cpudata->epp_default;
|
|
-
|
|
- if (epp == -EINVAL)
|
|
+ else
|
|
epp = epp_values[pref_index];
|
|
|
|
if (epp > 0 && cpudata->policy == CPUFREQ_POLICY_PERFORMANCE) {
|
|
@@ -370,9 +368,7 @@ static int amd_pstate_set_energy_pref_in
|
|
cpudata->boost_state);
|
|
}
|
|
|
|
- ret = amd_pstate_set_epp(cpudata, epp);
|
|
-
|
|
- return ret;
|
|
+ return amd_pstate_set_epp(cpudata, epp);
|
|
}
|
|
|
|
static inline int msr_cppc_enable(bool enable)
|