* [patch 8/9] smc911x: test after postfix decrement fails in smc911x_{reset,drop_pkt}
@ 2008-04-18 20:50 akpm
2008-04-25 6:04 ` Jeff Garzik
0 siblings, 1 reply; 2+ messages in thread
From: akpm @ 2008-04-18 20:50 UTC (permalink / raw)
To: jeff; +Cc: netdev, akpm, 12o3l, jacmet
From: Roel Kluin <12o3l@tiscali.nl>
When timeout reaches 0 the postfix decrement still subtracts, so the test
fails.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
Acked-by: Peter Korsgaard <jacmet@sunsite.dk>
Cc: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
drivers/net/smc911x.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff -puN drivers/net/smc911x.c~smc911x-test-after-postfix-decrement-fails-in-smc911x_resetdrop_pkt drivers/net/smc911x.c
--- a/drivers/net/smc911x.c~smc911x-test-after-postfix-decrement-fails-in-smc911x_resetdrop_pkt
+++ a/drivers/net/smc911x.c
@@ -244,7 +244,7 @@ static void smc911x_reset(struct net_dev
do {
udelay(10);
reg = SMC_GET_PMT_CTRL() & PMT_CTRL_READY_;
- } while ( timeout-- && !reg);
+ } while (--timeout && !reg);
if (timeout == 0) {
PRINTK("%s: smc911x_reset timeout waiting for PM restore\n", dev->name);
return;
@@ -268,7 +268,7 @@ static void smc911x_reset(struct net_dev
resets++;
break;
}
- } while ( timeout-- && (reg & HW_CFG_SRST_));
+ } while (--timeout && (reg & HW_CFG_SRST_));
}
if (timeout == 0) {
PRINTK("%s: smc911x_reset timeout waiting for reset\n", dev->name);
@@ -414,7 +414,7 @@ static inline void smc911x_drop_pkt(stru
do {
udelay(10);
reg = SMC_GET_RX_DP_CTRL() & RX_DP_CTRL_FFWD_BUSY_;
- } while ( timeout-- && reg);
+ } while (--timeout && reg);
if (timeout == 0) {
PRINTK("%s: timeout waiting for RX fast forward\n", dev->name);
}
_
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [patch 8/9] smc911x: test after postfix decrement fails in smc911x_{reset,drop_pkt}
2008-04-18 20:50 [patch 8/9] smc911x: test after postfix decrement fails in smc911x_{reset,drop_pkt} akpm
@ 2008-04-25 6:04 ` Jeff Garzik
0 siblings, 0 replies; 2+ messages in thread
From: Jeff Garzik @ 2008-04-25 6:04 UTC (permalink / raw)
To: akpm; +Cc: netdev, 12o3l, jacmet
akpm@linux-foundation.org wrote:
> From: Roel Kluin <12o3l@tiscali.nl>
>
> When timeout reaches 0 the postfix decrement still subtracts, so the test
> fails.
>
> [akpm@linux-foundation.org: coding-style fixes]
> Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
> Acked-by: Peter Korsgaard <jacmet@sunsite.dk>
> Cc: Jeff Garzik <jeff@garzik.org>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
applied
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-04-25 6:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-18 20:50 [patch 8/9] smc911x: test after postfix decrement fails in smc911x_{reset,drop_pkt} akpm
2008-04-25 6:04 ` Jeff Garzik
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).