From patchwork Wed May 18 07:37:43 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 792972 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.3) with ESMTP id p4I7bqvL028870 for ; Wed, 18 May 2011 07:37:59 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754986Ab1ERHh6 (ORCPT ); Wed, 18 May 2011 03:37:58 -0400 Received: from na3sys009aog112.obsmtp.com ([74.125.149.207]:48107 "EHLO na3sys009aog112.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754924Ab1ERHh6 (ORCPT ); Wed, 18 May 2011 03:37:58 -0400 Received: from mail-gx0-f177.google.com ([209.85.161.177]) (using TLSv1) by na3sys009aob112.postini.com ([74.125.148.12]) with SMTP ID DSNKTdN3VTlZV7mqntGKoz7HObdEJyn7pDFc@postini.com; Wed, 18 May 2011 00:37:57 PDT Received: by mail-gx0-f177.google.com with SMTP id 2so520806gxk.36 for ; Wed, 18 May 2011 00:37:57 -0700 (PDT) Received: by 10.90.42.38 with SMTP id p38mr1104762agp.101.1305704277049; Wed, 18 May 2011 00:37:57 -0700 (PDT) Received: from localhost (dragon.ti.com [192.94.94.33]) by mx.google.com with ESMTPS id h16sm935166anm.38.2011.05.18.00.37.55 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 18 May 2011 00:37:56 -0700 (PDT) From: Nishanth Menon To: kevin Cc: linux-omap , Nishanth Menon Subject: [PM-WIP_CPUFREQ][PATCH 3/6 v2] OMAP2+: cpufreq: minor comment cleanup Date: Wed, 18 May 2011 02:37:43 -0500 Message-Id: <1305704266-17623-4-git-send-email-nm@ti.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <[PM-WIP_CPUFREQ][PATCH 0/5] Cleanups for cpufreq> References: <[PM-WIP_CPUFREQ][PATCH 0/5] Cleanups for cpufreq> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Wed, 18 May 2011 07:37:59 +0000 (UTC) this should probably get squashed in.. Signed-off-by: Nishanth Menon --- arch/arm/mach-omap2/omap2plus-cpufreq.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-omap2/omap2plus-cpufreq.c b/arch/arm/mach-omap2/omap2plus-cpufreq.c index 6e3666a..45f1e9e 100644 --- a/arch/arm/mach-omap2/omap2plus-cpufreq.c +++ b/arch/arm/mach-omap2/omap2plus-cpufreq.c @@ -84,8 +84,10 @@ static int omap_target(struct cpufreq_policy *policy, if (is_smp() && (num_online_cpus() < NR_CPUS)) return ret; - /* Ensure desired rate is within allowed range. Some govenors - * (ondemand) will just pass target_freq=0 to get the minimum. */ + /* + * Ensure desired rate is within allowed range. Some govenors + * (ondemand) will just pass target_freq=0 to get the minimum. + */ if (target_freq < policy->min) target_freq = policy->min; if (target_freq > policy->max)