[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4990AC93.3080906@gmail.com>
Date: Mon, 09 Feb 2009 23:22:11 +0100
From: Roel Kluin <roel.kluin@...il.com>
To: "David S. Miller" <davem@...emloft.net>
CC: netdev@...r.kernel.org, lkml <linux-kernel@...r.kernel.org>
Subject: [PATCH] netdevice: ticks reaches 25, not 26.
With while (tick++ < 25) { ... } ticks reaches 25, not 26.
Signed-off-by: Roel Kluin <roel.kluin@...il.com>
---
diff --git a/drivers/net/myri_sbus.c b/drivers/net/myri_sbus.c
index 899ed06..a95e217 100644
--- a/drivers/net/myri_sbus.c
+++ b/drivers/net/myri_sbus.c
@@ -161,7 +161,7 @@ static int myri_do_handshake(struct myri_eth *mp)
myri_enable_irq(mp->lregs, cregs);
- if (tick > 25) {
+ if (tick >= 25) {
DET(("25 ticks we lose, failure.\n"));
return -1;
}
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists