diff options
author | 2025-01-22 16:23:51 +0530 | |
---|---|---|
committer | 2025-02-07 09:45:12 +0530 | |
commit | 03973e997fc4b63aa0305c08b1ec1945fc745824 (patch) | |
tree | c766b359842039f2e262010fcf659c7d7f65c5e3 | |
parent | cpufreq: elanfreq: Stop setting cpufreq_driver->attr field (diff) | |
download | wireguard-linux-03973e997fc4b63aa0305c08b1ec1945fc745824.tar.xz wireguard-linux-03973e997fc4b63aa0305c08b1ec1945fc745824.zip |
cpufreq: imx6q: 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/imx6q-cpufreq.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/cpufreq/imx6q-cpufreq.c b/drivers/cpufreq/imx6q-cpufreq.c index f3c99f378ad6..db1c88e9d3f9 100644 --- a/drivers/cpufreq/imx6q-cpufreq.c +++ b/drivers/cpufreq/imx6q-cpufreq.c @@ -207,7 +207,6 @@ static struct cpufreq_driver imx6q_cpufreq_driver = { .init = imx6q_cpufreq_init, .register_em = cpufreq_register_em_with_opp, .name = "imx6q-cpufreq", - .attr = cpufreq_generic_attr, .suspend = cpufreq_generic_suspend, }; |