* Bump rockchip DEV 32b to 5.11.y * Move mvebu64 DEV to 5.11.y * Move Rockchip64 DEV to 5.11.y Disabling general-rkvdec_nv15.patch - need more attention * Add Meson DEV / Odroid C1 * Move OdroidXU4 DEV to tobetter's 5.11.y branch * Bump sunxi DEV to 5.11.y * Bump mvebu DEV to 5.11.y
47 lines
1.5 KiB
Diff
47 lines
1.5 KiB
Diff
From f3274c42504e42a28a288c80f64309b4a915f9b3 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
|
|
Date: Tue, 20 Oct 2020 16:57:19 +0200
|
|
Subject: [PATCH 09/10] cpufreq: armada-37xx: Remove cur_frequency variable
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Variable cur_frequency in armada37xx_cpufreq_driver_init() is unused.
|
|
|
|
Signed-off-by: Pali Rohár <pali@kernel.org>
|
|
---
|
|
drivers/cpufreq/armada-37xx-cpufreq.c | 10 +---------
|
|
1 file changed, 1 insertion(+), 9 deletions(-)
|
|
|
|
diff --git a/drivers/cpufreq/armada-37xx-cpufreq.c b/drivers/cpufreq/armada-37xx-cpufreq.c
|
|
index f08281fc525c..f13646d143de 100644
|
|
--- a/drivers/cpufreq/armada-37xx-cpufreq.c
|
|
+++ b/drivers/cpufreq/armada-37xx-cpufreq.c
|
|
@@ -389,7 +389,7 @@ static int __init armada37xx_cpufreq_driver_init(void)
|
|
struct armada_37xx_dvfs *dvfs;
|
|
struct platform_device *pdev;
|
|
unsigned long freq;
|
|
- unsigned int cur_frequency, base_frequency;
|
|
+ unsigned int base_frequency;
|
|
struct regmap *nb_clk_base, *nb_pm_base, *avs_base;
|
|
struct device *cpu_dev;
|
|
int load_lvl, ret;
|
|
@@ -450,14 +450,6 @@ static int __init armada37xx_cpufreq_driver_init(void)
|
|
return -EINVAL;
|
|
}
|
|
|
|
- /* Get nominal (current) CPU frequency */
|
|
- cur_frequency = clk_get_rate(clk);
|
|
- if (!cur_frequency) {
|
|
- dev_err(cpu_dev, "Failed to get clock rate for CPU\n");
|
|
- clk_put(clk);
|
|
- return -EINVAL;
|
|
- }
|
|
-
|
|
dvfs = armada_37xx_cpu_freq_info_get(base_frequency);
|
|
if (!dvfs) {
|
|
clk_put(clk);
|
|
--
|
|
2.25.1
|
|
|