Commit 4f59540c authored by Perry Yuan's avatar Perry Yuan Committed by Rafael J. Wysocki

cpufreq: amd-pstate: simplify cpudata pointer assignment

move the cpudata assignment to cpudata declaration which
will simplify the functions.

No functional change intended.
Reviewed-by: default avatarHuang Rui <ray.huang@amd.com>
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarPerry Yuan <Perry.Yuan@amd.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 45fa4443
...@@ -555,9 +555,7 @@ static int amd_pstate_cpu_init(struct cpufreq_policy *policy) ...@@ -555,9 +555,7 @@ static int amd_pstate_cpu_init(struct cpufreq_policy *policy)
static int amd_pstate_cpu_exit(struct cpufreq_policy *policy) static int amd_pstate_cpu_exit(struct cpufreq_policy *policy)
{ {
struct amd_cpudata *cpudata; struct amd_cpudata *cpudata = policy->driver_data;
cpudata = policy->driver_data;
freq_qos_remove_request(&cpudata->req[1]); freq_qos_remove_request(&cpudata->req[1]);
freq_qos_remove_request(&cpudata->req[0]); freq_qos_remove_request(&cpudata->req[0]);
...@@ -599,9 +597,7 @@ static ssize_t show_amd_pstate_max_freq(struct cpufreq_policy *policy, ...@@ -599,9 +597,7 @@ static ssize_t show_amd_pstate_max_freq(struct cpufreq_policy *policy,
char *buf) char *buf)
{ {
int max_freq; int max_freq;
struct amd_cpudata *cpudata; struct amd_cpudata *cpudata = policy->driver_data;
cpudata = policy->driver_data;
max_freq = amd_get_max_freq(cpudata); max_freq = amd_get_max_freq(cpudata);
if (max_freq < 0) if (max_freq < 0)
...@@ -614,9 +610,7 @@ static ssize_t show_amd_pstate_lowest_nonlinear_freq(struct cpufreq_policy *poli ...@@ -614,9 +610,7 @@ static ssize_t show_amd_pstate_lowest_nonlinear_freq(struct cpufreq_policy *poli
char *buf) char *buf)
{ {
int freq; int freq;
struct amd_cpudata *cpudata; struct amd_cpudata *cpudata = policy->driver_data;
cpudata = policy->driver_data;
freq = amd_get_lowest_nonlinear_freq(cpudata); freq = amd_get_lowest_nonlinear_freq(cpudata);
if (freq < 0) if (freq < 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment