From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753771AbbG0NnB (ORCPT ); Mon, 27 Jul 2015 09:43:01 -0400 Received: from v094114.home.net.pl ([79.96.170.134]:65215 "HELO v094114.home.net.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1752589AbbG0Nm6 (ORCPT ); Mon, 27 Jul 2015 09:42:58 -0400 From: "Rafael J. Wysocki" To: Linux PM list Cc: Viresh Kumar , Linux Kernel Mailing List , Russell King - ARM Linux Subject: [PATCH 4/7] cpufreq: Drop unused dev argument from two functions Date: Mon, 27 Jul 2015 16:05:21 +0200 Message-ID: <1650994.NqTPmayJcx@vostro.rjw.lan> User-Agent: KMail/4.11.5 (Linux/4.1.0-rc5+; KDE/4.11.5; x86_64; ; ) In-Reply-To: <3874727.Jpay9zgokc@vostro.rjw.lan> References: <7868353.pEStq1MJ2a@vostro.rjw.lan> <3874727.Jpay9zgokc@vostro.rjw.lan> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="utf-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Rafael J. Wysocki The dev argument of cpufreq_add_policy_cpu() and cpufreq_add_dev_interface() is not used by any of them, so drop it. Signed-off-by: Rafael J. Wysocki --- drivers/cpufreq/cpufreq.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) Index: linux-pm/drivers/cpufreq/cpufreq.c =================================================================== --- linux-pm.orig/drivers/cpufreq/cpufreq.c +++ linux-pm/drivers/cpufreq/cpufreq.c @@ -999,8 +999,7 @@ static void cpufreq_remove_dev_symlink(s } } -static int cpufreq_add_dev_interface(struct cpufreq_policy *policy, - struct device *dev) +static int cpufreq_add_dev_interface(struct cpufreq_policy *policy) { struct freq_attr **drv_attr; int ret = 0; @@ -1057,8 +1056,7 @@ static int cpufreq_init_policy(struct cp return cpufreq_set_policy(policy, &new_policy); } -static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, - unsigned int cpu, struct device *dev) +static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu) { int ret = 0; @@ -1225,7 +1223,7 @@ static int cpufreq_add_dev(struct device if (policy) { WARN_ON(!cpumask_test_cpu(cpu, policy->related_cpus)); if (!policy_is_inactive(policy)) - return cpufreq_add_policy_cpu(policy, cpu, dev); + return cpufreq_add_policy_cpu(policy, cpu); /* This is the only online CPU for the policy. Start over. */ recover_policy = true; @@ -1328,7 +1326,7 @@ static int cpufreq_add_dev(struct device CPUFREQ_START, policy); if (!recover_policy) { - ret = cpufreq_add_dev_interface(policy, dev); + ret = cpufreq_add_dev_interface(policy); if (ret) goto out_exit_policy; blocking_notifier_call_chain(&cpufreq_policy_notifier_list,