Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 36656
b: refs/heads/master
c: d1d8f7d
h: refs/heads/master
v: v3
  • Loading branch information
Eric Sesterhenn authored and Russell King committed Sep 27, 2006
1 parent 6355b9f commit 305ace5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 576b3ef2495c732a56509febd5de5144f3ebccf6
refs/heads/master: d1d8f7dec179a421d6d449ddcd1713ed55db40be
4 changes: 2 additions & 2 deletions trunk/arch/arm/common/icst307.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ icst307_khz_to_vco(const struct icst307_params *p, unsigned long freq)
break;
} while (i < ARRAY_SIZE(idx2s));

if (i > ARRAY_SIZE(idx2s))
if (i >= ARRAY_SIZE(idx2s))
return vco;

vco.s = idx2s[i];
Expand Down Expand Up @@ -119,7 +119,7 @@ icst307_ps_to_vco(const struct icst307_params *p, unsigned long period)
break;
} while (i < ARRAY_SIZE(idx2s));

if (i > ARRAY_SIZE(idx2s))
if (i >= ARRAY_SIZE(idx2s))
return vco;

vco.s = idx2s[i];
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/arm/common/icst525.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ icst525_khz_to_vco(const struct icst525_params *p, unsigned long freq)
break;
} while (i < ARRAY_SIZE(idx2s));

if (i > ARRAY_SIZE(idx2s))
if (i >= ARRAY_SIZE(idx2s))
return vco;

vco.s = idx2s[i];
Expand Down Expand Up @@ -118,7 +118,7 @@ icst525_ps_to_vco(const struct icst525_params *p, unsigned long period)
break;
} while (i < ARRAY_SIZE(idx2s));

if (i > ARRAY_SIZE(idx2s))
if (i >= ARRAY_SIZE(idx2s))
return vco;

vco.s = idx2s[i];
Expand Down

0 comments on commit 305ace5

Please sign in to comment.