diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2016-02-10 09:25:17 +0100 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2016-02-24 10:29:54 +0100 |
commit | d306ee9e24d2715985273829974876842d247e21 (patch) | |
tree | e70fd59d77cf9bb47b05c589c05974f89e268eab | |
parent | 02d2716d3300fd8bb4fab0a977a779fb68339249 (diff) | |
download | lwn-d306ee9e24d2715985273829974876842d247e21.tar.gz lwn-d306ee9e24d2715985273829974876842d247e21.zip |
ARM: 8519/1: ICST: try other dividends than 1
commit e972c37459c813190461dabfeaac228e00aae259 upstream.
Since the dawn of time the ICST code has only supported divide
by one or hang in an eternal loop. Luckily we were always dividing
by one because the reference frequency for the systems using
the ICSTs is 24MHz and the [min,max] values for the PLL input
if [10,320] MHz for ICST307 and [6,200] for ICST525, so the loop
will always terminate immediately without assigning any divisor
for the reference frequency.
But for the code to make sense, let's insert the missing i++
Reported-by: David Binderman <dcb314@hotmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
-rw-r--r-- | arch/arm/common/icst.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/common/icst.c b/arch/arm/common/icst.c index 2dc6da70ae59..3b3e58b7ba74 100644 --- a/arch/arm/common/icst.c +++ b/arch/arm/common/icst.c @@ -58,6 +58,7 @@ icst_hz_to_vco(const struct icst_params *p, unsigned long freq) if (f > p->vco_min && f <= p->vco_max) break; + i++; } while (i < 8); if (i >= 8) |