diff options
author | 2025-01-22 16:23:51 +0530 | |
---|---|---|
committer | 2025-02-07 09:45:12 +0530 | |
commit | ef282f6bef1456266ba7af6f5408e6b4615c1738 (patch) | |
tree | f389ff33bb4e481600bc43a520535f4b3ac90da7 | |
parent | cpufreq: mediatek: Stop setting cpufreq_driver->attr field (diff) | |
download | wireguard-linux-ef282f6bef1456266ba7af6f5408e6b4615c1738.tar.xz wireguard-linux-ef282f6bef1456266ba7af6f5408e6b4615c1738.zip |
cpufreq: omap: 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/omap-cpufreq.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/cpufreq/omap-cpufreq.c b/drivers/cpufreq/omap-cpufreq.c index 106220c0fd11..bbb01d93b54b 100644 --- a/drivers/cpufreq/omap-cpufreq.c +++ b/drivers/cpufreq/omap-cpufreq.c @@ -147,7 +147,6 @@ static struct cpufreq_driver omap_driver = { .exit = omap_cpu_exit, .register_em = cpufreq_register_em_with_opp, .name = "omap", - .attr = cpufreq_generic_attr, }; static int omap_cpufreq_probe(struct platform_device *pdev) |