diff options
| author | Roel Kluin <[email protected]> | 2009-06-17 13:13:56 -0700 |
|---|---|---|
| committer | Geert Uytterhoeven <[email protected]> | 2009-08-26 23:14:49 +0200 |
| commit | dac9ff79a8122b30176e23359bb879b3144d7f1f (patch) | |
| tree | 28899857073c65e388164e170e09dc2233b44fc2 | |
| parent | f415c413f458837bd0c27086b79aca889f9435e4 (diff) | |
m68k: count can reach 51, not 50
With while (count++ < 50) { ... } count can reach 51, not 50, so we
shouldn't give an error message on a count of 50.
[[email protected]: coding-style fixes]
Signed-off-by: Roel Kluin <[email protected]>
Cc: Geert Uytterhoeven <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Geert Uytterhoeven <[email protected]>
| -rw-r--r-- | drivers/macintosh/via-maciisi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/macintosh/via-maciisi.c b/drivers/macintosh/via-maciisi.c index 4d686c0bdea0..9ab5b0c34f0d 100644 --- a/drivers/macintosh/via-maciisi.c +++ b/drivers/macintosh/via-maciisi.c @@ -288,7 +288,7 @@ static void maciisi_sync(struct adb_request *req) } /* This could be BAD... when the ADB controller doesn't respond * for this long, it's probably not coming back :-( */ - if(count >= 50) /* Hopefully shouldn't happen */ + if (count > 50) /* Hopefully shouldn't happen */ printk(KERN_ERR "maciisi_send_request: poll timed out!\n"); } |