linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] postfix decrement error in ipw2100_start_adapter(); drivers/net/wireless/ipw2100.c
@ 2007-11-05  0:43 Roel Kluin
  2007-11-05  2:50 ` Zhu Yi
  2007-11-05 22:55 ` Roel Kluin
  0 siblings, 2 replies; 3+ messages in thread
From: Roel Kluin @ 2007-11-05  0:43 UTC (permalink / raw)
  To: linux-wireless

If i reaches zero, the loop ends, but the postfix decrement subtracts it to -1.
Testing for 'i == 0', later in the function, will not fulfill its purpose.

Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
---
diff --git a/drivers/net/wireless/ipw2100.c b/drivers/net/wireless/ipw2100.c
index a6c7904..84870f4 100644
--- a/drivers/net/wireless/ipw2100.c
+++ b/drivers/net/wireless/ipw2100.c
@@ -1267,7 +1267,7 @@ static int ipw2100_start_adapter(struct ipw2100_priv *priv)
 				       IPW2100_INTA_FATAL_ERROR |
 				       IPW2100_INTA_PARITY_ERROR);
 		}
-	} while (i--);
+	} while (--i);
 
 	/* Clear out any pending INTAs since we aren't supposed to have
 	 * interrupts enabled at this point... */

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-11-05 22:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-05  0:43 [PATCH] postfix decrement error in ipw2100_start_adapter(); drivers/net/wireless/ipw2100.c Roel Kluin
2007-11-05  2:50 ` Zhu Yi
2007-11-05 22:55 ` Roel Kluin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).