[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <472F3163.2060302@tiscali.nl>
Date: Mon, 05 Nov 2007 16:06:11 +0100
From: Roel Kluin <12o3l@...cali.nl>
To: netdev@...r.kernel.org
Subject: [PATCH] prevent that myri_do_handshake lies about ticks in drivers/net/myri_sbus.c
With '<=' tick can be incremented up to 26, The last loop is redundant since
even when 'softstate' becomes 'STATE_READY', 'if (tick > 25)' will still cause
the function to return -1,
Signed-off-by: Roel Kluin <12o3l@...cali.nl>
---
diff --git a/drivers/net/myri_sbus.c b/drivers/net/myri_sbus.c
index 8d29319..656a260 100644
--- a/drivers/net/myri_sbus.c
+++ b/drivers/net/myri_sbus.c
@@ -134,7 +134,7 @@ static int myri_do_handshake(struct myri_eth *mp)
myri_disable_irq(mp->lregs, cregs);
- while (tick++ <= 25) {
+ while (tick++ < 25) {
u32 softstate;
/* Wake it up. */
-
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