diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2009-06-10 15:56:57 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-06-15 11:09:30 -0400 |
commit | 36c7b3029784323d46d80b3262a4c1ab664eb0a3 (patch) | |
tree | 2a5fafa7533af7d58005ebbbea750bd533ef72d7 | |
parent | df59c0ad05182329688e514e5a9c3836fa208ea3 (diff) |
[SCSI] ncr53c8xx: div reaches -1
With while(--div >= 0) { ... } div reaches -1.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
-rw-r--r-- | drivers/scsi/ncr53c8xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/ncr53c8xx.c b/drivers/scsi/ncr53c8xx.c index 3b7240e40819..e3c482aa87b5 100644 --- a/drivers/scsi/ncr53c8xx.c +++ b/drivers/scsi/ncr53c8xx.c | |||
@@ -5444,7 +5444,7 @@ static void ncr_getsync(struct ncb *np, u_char sfac, u_char *fakp, u_char *scntl | |||
5444 | ** input speed faster than the period. | 5444 | ** input speed faster than the period. |
5445 | */ | 5445 | */ |
5446 | kpc = per * clk; | 5446 | kpc = per * clk; |
5447 | while (--div >= 0) | 5447 | while (--div > 0) |
5448 | if (kpc >= (div_10M[div] << 2)) break; | 5448 | if (kpc >= (div_10M[div] << 2)) break; |
5449 | 5449 | ||
5450 | /* | 5450 | /* |