aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/common/icst307.c
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2010-01-16 14:49:39 -0500
committerRussell King <rmk+kernel@arm.linux.org.uk>2010-05-02 04:35:31 -0400
commite73a46a3d3df22b379d8adcb59999eafea1d60d5 (patch)
tree20253a507d838d0acc180776ba5e7737111e78df /arch/arm/common/icst307.c
parent64fceb1dcd1aa6a9f2e53cf8830b38bb007b375b (diff)
ARM: ICST: move minimum VCO frequency to icst_params
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/common/icst307.c')
-rw-r--r--arch/arm/common/icst307.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/common/icst307.c b/arch/arm/common/icst307.c
index 66c69e597b7..312485fab4a 100644
--- a/arch/arm/common/icst307.c
+++ b/arch/arm/common/icst307.c
@@ -53,7 +53,7 @@ icst307_hz_to_vco(const struct icst_params *p, unsigned long freq)
53 /* 53 /*
54 * f must be between 6MHz and 200MHz (3.3 or 5V) 54 * f must be between 6MHz and 200MHz (3.3 or 5V)
55 */ 55 */
56 if (f > ICST307_VCO_MIN && f <= p->vco_max) 56 if (f > p->vco_min && f <= p->vco_max)
57 break; 57 break;
58 } while (i < ARRAY_SIZE(idx2s)); 58 } while (i < ARRAY_SIZE(idx2s));
59 59