[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1540830201-2947-1-git-send-email-daniel.lezcano@linaro.org>
Date: Mon, 29 Oct 2018 17:23:17 +0100
From: Daniel Lezcano <daniel.lezcano@...aro.org>
To: rjw@...ysocki.net
Cc: vincent.guittot@...aro.org, linux-kernel@...r.kernel.org,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
"Rafael J. Wysocki" <rafael@...nel.org>
Subject: [PATCH 1/4] base/drivers/arch_topology: Remove useless check
The function 'register_cpufreq_notifier' registers the
init_cpu_capacity_notifier() only if raw_capacity is not NULL.
Hence init_cpu_capacity_notifier() can not be called with raw_capacity
set to NULL, it is pointless to check it.
Remove the check.
Signed-off-by: Daniel Lezcano <daniel.lezcano@...aro.org>
---
drivers/base/arch_topology.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/drivers/base/arch_topology.c b/drivers/base/arch_topology.c
index e7cb0c6..204ed10 100644
--- a/drivers/base/arch_topology.c
+++ b/drivers/base/arch_topology.c
@@ -181,9 +181,6 @@ init_cpu_capacity_callback(struct notifier_block *nb,
struct cpufreq_policy *policy = data;
int cpu;
- if (!raw_capacity)
- return 0;
-
if (val != CPUFREQ_NOTIFY)
return 0;
--
2.7.4
Powered by blists - more mailing lists