diff options
author | 2025-01-22 16:23:51 +0530 | |
---|---|---|
committer | 2025-02-07 09:45:13 +0530 | |
commit | e2079dcc2b63c75cd4a63d0dc6d42105f3e893a3 (patch) | |
tree | 08d35453d195e822b462d39d11021d19b4bc13ec | |
parent | cpufreq: qoriq: Stop setting cpufreq_driver->attr field (diff) | |
download | wireguard-linux-e2079dcc2b63c75cd4a63d0dc6d42105f3e893a3.tar.xz wireguard-linux-e2079dcc2b63c75cd4a63d0dc6d42105f3e893a3.zip |
cpufreq: sc520_freq: 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>
-rw-r--r-- | drivers/cpufreq/sc520_freq.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/cpufreq/sc520_freq.c b/drivers/cpufreq/sc520_freq.c index 330c8d6cf93c..103d2519dff7 100644 --- a/drivers/cpufreq/sc520_freq.c +++ b/drivers/cpufreq/sc520_freq.c @@ -92,7 +92,6 @@ static struct cpufreq_driver sc520_freq_driver = { .target_index = sc520_freq_target, .init = sc520_freq_cpu_init, .name = "sc520_freq", - .attr = cpufreq_generic_attr, }; static const struct x86_cpu_id sc520_ids[] = { |