[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4AE61590.2030603@gmail.com>
Date: Mon, 26 Oct 2009 22:33:04 +0100
From: Roel Kluin <roel.kluin@...il.com>
To: Russell King <linux@....linux.org.uk>,
linux-arm-kernel@...ts.infradead.org,
Andrew Morton <akpm@...ux-foundation.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: [PATCH] icst307: Add missing increment
Without this increment the loop can only break if it does in the
first iteration.
Signed-off-by: Roel Kluin <roel.kluin@...il.com>
---
diff --git a/arch/arm/common/icst307.c b/arch/arm/common/icst307.c
index 6d094c1..b255fbf 100644
--- a/arch/arm/common/icst307.c
+++ b/arch/arm/common/icst307.c
@@ -55,7 +55,7 @@ icst307_khz_to_vco(const struct icst307_params *p, unsigned long freq)
*/
if (f > 6000 && f <= p->vco_max)
break;
- } while (i < ARRAY_SIZE(idx2s));
+ } while (++i < ARRAY_SIZE(idx2s));
if (i >= ARRAY_SIZE(idx2s))
return vco;
@@ -117,7 +117,7 @@ icst307_ps_to_vco(const struct icst307_params *p, unsigned long period)
*/
if (f >= ps && f < 1000000000UL / 6000 + 1)
break;
- } while (i < ARRAY_SIZE(idx2s));
+ } while (++i < ARRAY_SIZE(idx2s));
if (i >= ARRAY_SIZE(idx2s))
return vco;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists