diff options
author | 2025-01-22 16:23:51 +0530 | |
---|---|---|
committer | 2025-02-07 09:45:14 +0530 | |
commit | 260d6cdc7b69ca0e5080d70d4937427e454183c8 (patch) | |
tree | 95a266acf1fa758c52f2fd552541c6259a01d468 | |
parent | cpufreq: tegra: Stop setting cpufreq_driver->attr field (diff) | |
download | wireguard-linux-260d6cdc7b69ca0e5080d70d4937427e454183c8.tar.xz wireguard-linux-260d6cdc7b69ca0e5080d70d4937427e454183c8.zip |
cpufreq: vexpress: 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: Sudeep Holla <sudeep.holla@arm.com>
Acked-by: Rafael J. Wysocki <rafael@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/cpufreq/vexpress-spc-cpufreq.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/cpufreq/vexpress-spc-cpufreq.c b/drivers/cpufreq/vexpress-spc-cpufreq.c index 0f86cdb7ec8a..65fea47b82e6 100644 --- a/drivers/cpufreq/vexpress-spc-cpufreq.c +++ b/drivers/cpufreq/vexpress-spc-cpufreq.c @@ -471,7 +471,6 @@ static struct cpufreq_driver ve_spc_cpufreq_driver = { .init = ve_spc_cpufreq_init, .exit = ve_spc_cpufreq_exit, .register_em = cpufreq_register_em_with_opp, - .attr = cpufreq_generic_attr, }; #ifdef CONFIG_BL_SWITCHER |