From patchwork Fri May 13 21:07:24 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 783982 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 p4DL7wQv027722 for ; Fri, 13 May 2011 21:07:58 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759306Ab1EMVH5 (ORCPT ); Fri, 13 May 2011 17:07:57 -0400 Received: from na3sys009aog115.obsmtp.com ([74.125.149.238]:49328 "EHLO na3sys009aog115.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758649Ab1EMVH5 (ORCPT ); Fri, 13 May 2011 17:07:57 -0400 Received: from mail-gw0-f45.google.com ([74.125.83.45]) (using TLSv1) by na3sys009aob115.postini.com ([74.125.148.12]) with SMTP ID DSNKTc2dqAAQ9gPcGGG37PDKlH+7XA7pz65Q@postini.com; Fri, 13 May 2011 14:07:56 PDT Received: by mail-gw0-f45.google.com with SMTP id 19so1373552gwb.18 for ; Fri, 13 May 2011 14:07:46 -0700 (PDT) Received: by 10.236.80.1 with SMTP id j1mr1930006yhe.168.1305320866433; Fri, 13 May 2011 14:07:46 -0700 (PDT) Received: from localhost (dragon.ti.com [192.94.94.33]) by mx.google.com with ESMTPS id 65sm1306077yhl.85.2011.05.13.14.07.44 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 13 May 2011 14:07:45 -0700 (PDT) From: Nishanth Menon To: Kevin Hilman Cc: linux-omap , Nishanth Menon Subject: [PM-WIP-CPUFREQ][PATCH 3/5] OMAP2+: cpufreq: minor comment cleanup Date: Fri, 13 May 2011 14:07:24 -0700 Message-Id: <1305320846-16147-4-git-send-email-nm@ti.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1305320846-16147-1-git-send-email-nm@ti.com> References: <1305320846-16147-1-git-send-email-nm@ti.com> 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]); Fri, 13 May 2011 21:07:58 +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)