linux-omap 2.6.39: sync with meta-texasinstruments
[openembedded.git] / recipes / linux / linux-omap-2.6.39 / pm / linux-omap-2.6.39-ti-pm-wip-cpufreq-fixes / 0003-OMAP2-cpufreq-minor-comment-cleanup.patch
blob3064d5044d8421b71d737a7506d494b49d13dfd6
1 From 61c5ce4da03eda42e69cf225fddac9c910506db5 Mon Sep 17 00:00:00 2001
2 From: Nishanth Menon <nm@ti.com>
3 Date: Thu, 12 May 2011 16:27:45 -0700
4 Subject: [PATCH 3/6] OMAP2+: cpufreq: minor comment cleanup
6 this should probably get squashed in..
8 Signed-off-by: Nishanth Menon <nm@ti.com>
9 Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
10 ---
11 arch/arm/mach-omap2/omap2plus-cpufreq.c | 6 ++++--
12 1 files changed, 4 insertions(+), 2 deletions(-)
14 diff --git a/arch/arm/mach-omap2/omap2plus-cpufreq.c b/arch/arm/mach-omap2/omap2plus-cpufreq.c
15 index 6e3666a..45f1e9e 100644
16 --- a/arch/arm/mach-omap2/omap2plus-cpufreq.c
17 +++ b/arch/arm/mach-omap2/omap2plus-cpufreq.c
18 @@ -84,8 +84,10 @@ static int omap_target(struct cpufreq_policy *policy,
19 if (is_smp() && (num_online_cpus() < NR_CPUS))
20 return ret;
22 - /* Ensure desired rate is within allowed range. Some govenors
23 - * (ondemand) will just pass target_freq=0 to get the minimum. */
24 + /*
25 + * Ensure desired rate is within allowed range. Some govenors
26 + * (ondemand) will just pass target_freq=0 to get the minimum.
27 + */
28 if (target_freq < policy->min)
29 target_freq = policy->min;
30 if (target_freq > policy->max)
31 --
32 1.6.6.1