diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-09-16 09:26:34 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-09-30 14:18:44 -0400 |
commit | ae025193d3b811e1cd6bdfa7dc4940ae9e2739d1 (patch) | |
tree | 904450a12772edddda611143e6649e1fe1677ae6 /drivers/cpufreq/sc520_freq.c | |
parent | 53862f7a0b75f3d8e7445b864aa45cfa4aa49570 (diff) |
cpufreq: sc520: use cpufreq_table_validate_and_show()
Lets use cpufreq_table_validate_and_show() instead of calling
cpufreq_frequency_table_cpuinfo() and cpufreq_frequency_table_get_attr().
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq/sc520_freq.c')
-rw-r--r-- | drivers/cpufreq/sc520_freq.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/cpufreq/sc520_freq.c b/drivers/cpufreq/sc520_freq.c index d6f6c6f4efa7..bb9c0def3f0d 100644 --- a/drivers/cpufreq/sc520_freq.c +++ b/drivers/cpufreq/sc520_freq.c | |||
@@ -106,7 +106,6 @@ static int sc520_freq_target(struct cpufreq_policy *policy, | |||
106 | static int sc520_freq_cpu_init(struct cpufreq_policy *policy) | 106 | static int sc520_freq_cpu_init(struct cpufreq_policy *policy) |
107 | { | 107 | { |
108 | struct cpuinfo_x86 *c = &cpu_data(0); | 108 | struct cpuinfo_x86 *c = &cpu_data(0); |
109 | int result; | ||
110 | 109 | ||
111 | /* capability check */ | 110 | /* capability check */ |
112 | if (c->x86_vendor != X86_VENDOR_AMD || | 111 | if (c->x86_vendor != X86_VENDOR_AMD || |
@@ -117,13 +116,7 @@ static int sc520_freq_cpu_init(struct cpufreq_policy *policy) | |||
117 | policy->cpuinfo.transition_latency = 1000000; /* 1ms */ | 116 | policy->cpuinfo.transition_latency = 1000000; /* 1ms */ |
118 | policy->cur = sc520_freq_get_cpu_frequency(0); | 117 | policy->cur = sc520_freq_get_cpu_frequency(0); |
119 | 118 | ||
120 | result = cpufreq_frequency_table_cpuinfo(policy, sc520_freq_table); | 119 | return cpufreq_table_validate_and_show(policy, sc520_freq_table); |
121 | if (result) | ||
122 | return result; | ||
123 | |||
124 | cpufreq_frequency_table_get_attr(sc520_freq_table, policy->cpu); | ||
125 | |||
126 | return 0; | ||
127 | } | 120 | } |
128 | 121 | ||
129 | 122 | ||