From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stratos Karafotis Subject: Re: [PATCH] cpufreq: ondemand: Remove redundant return statement Date: Fri, 01 Nov 2013 20:13:26 +0200 Message-ID: <5273EF46.7060703@semaphore.gr> References: <5272A118.1090908@semaphore.gr> <7457887.jzoQrnelyS@vostro.rjw.lan> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <7457887.jzoQrnelyS@vostro.rjw.lan> Sender: cpufreq-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="us-ascii"; format="flowed" To: "Rafael J. Wysocki" , Viresh Kumar Cc: "cpufreq@vger.kernel.org" , "linux-pm@vger.kernel.org" , LKML , Henrik Nilsson On 11/01/2013 02:18 AM, Rafael J. Wysocki wrote: > On Friday, November 01, 2013 12:09:16 AM Viresh Kumar wrote: >> On 31 October 2013 23:57, Stratos Karafotis wrote: >>> After commit dfa5bb622555d9da0df21b50f46ebdeef390041b >>> "cpufreq: ondemand: Change the calculation of target frequency", >>> this return statement is no longer needed. >>> >>> Reported-by: Henrik Nilsson >>> Signed-off-by: Stratos Karafotis >>> --- >>> drivers/cpufreq/cpufreq_ondemand.c | 1 - >>> 1 file changed, 1 deletion(-) >>> >>> diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c >>> index 32f26f6..18d4091 100644 >>> --- a/drivers/cpufreq/cpufreq_ondemand.c >>> +++ b/drivers/cpufreq/cpufreq_ondemand.c >>> @@ -168,7 +168,6 @@ static void od_check_cpu(int cpu, unsigned int load) >>> dbs_info->rate_mult = >>> od_tuners->sampling_down_factor; >>> dbs_freq_increase(policy, policy->max); >>> - return; >>> } else { >>> /* Calculate the next frequency proportional to load */ >>> unsigned int freq_next; >> >> Acked-by: Viresh Kumar > > Queued up for 3.13, thanks! > Thank you both for your immediate response! Stratos