mirror of https://github.com/torvalds/linux.git
cpufreq: apple: Stop setting cpufreq_driver->attr field
The cpufreq core now handles this for basic attributes, including boost frequencies, the driver can skip setting them. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Rafael J. Wysocki <rafael@kernel.org>
This commit is contained in:
parent
5c840223ab
commit
8b04d1435f
|
|
@ -229,12 +229,6 @@ static int apple_soc_cpufreq_find_cluster(struct cpufreq_policy *policy,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct freq_attr *apple_soc_cpufreq_hw_attr[] = {
|
|
||||||
&cpufreq_freq_attr_scaling_available_freqs,
|
|
||||||
NULL, /* Filled in below if boost is enabled */
|
|
||||||
NULL,
|
|
||||||
};
|
|
||||||
|
|
||||||
static int apple_soc_cpufreq_init(struct cpufreq_policy *policy)
|
static int apple_soc_cpufreq_init(struct cpufreq_policy *policy)
|
||||||
{
|
{
|
||||||
int ret, i;
|
int ret, i;
|
||||||
|
|
@ -321,7 +315,6 @@ static int apple_soc_cpufreq_init(struct cpufreq_policy *policy)
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_warn(cpu_dev, "failed to enable boost: %d\n", ret);
|
dev_warn(cpu_dev, "failed to enable boost: %d\n", ret);
|
||||||
} else {
|
} else {
|
||||||
apple_soc_cpufreq_hw_attr[1] = &cpufreq_freq_attr_scaling_boost_freqs;
|
|
||||||
apple_soc_cpufreq_driver.boost_enabled = true;
|
apple_soc_cpufreq_driver.boost_enabled = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -360,7 +353,6 @@ static struct cpufreq_driver apple_soc_cpufreq_driver = {
|
||||||
.target_index = apple_soc_cpufreq_set_target,
|
.target_index = apple_soc_cpufreq_set_target,
|
||||||
.fast_switch = apple_soc_cpufreq_fast_switch,
|
.fast_switch = apple_soc_cpufreq_fast_switch,
|
||||||
.register_em = cpufreq_register_em_with_opp,
|
.register_em = cpufreq_register_em_with_opp,
|
||||||
.attr = apple_soc_cpufreq_hw_attr,
|
|
||||||
.suspend = cpufreq_generic_suspend,
|
.suspend = cpufreq_generic_suspend,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue