]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
wl1271: fix timeout in wl1271_top_reg_read
authorJuha Leppanen <juha_motorsportcom@luukku.com>
Mon, 4 Jan 2010 20:52:50 +0000 (15:52 -0500)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 4 Jan 2010 20:55:25 +0000 (15:55 -0500)
I noticed a timeout bug in

/drivers/net/wireless/wl12xx/wl1271_spi.c

In the current code you cannot tell why you exited
the "poll for data ready" do-while loop if exiting
was done after the last possible loop.

Then timeout==0 regardless of (val & OCP_READY_MASK) or
!(val & OCP_READY_MASK), leading to possible false timeout...

Simple correction could be decreasing timeout after checking
for !(val & OCP_READY_MASK), not before

(Manually converted from email to an actual patch by me. -- JWL)

Reported-by: "Juha Leppanen" <juha_motorsportcom@luukku.com>
Signed-off-by: "Juha Leppanen" <juha_motorsportcom@luukku.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/wl12xx/wl1271_spi.c

index 02978a16e73232c87b5af0921ae1514ee54cdadc..ee9564aa6ecc0851bf5f3daabe05588935765286 100644 (file)
@@ -397,8 +397,7 @@ u16 wl1271_top_reg_read(struct wl1271 *wl, int addr)
        /* poll for data ready */
        do {
                val = wl1271_spi_read32(wl, OCP_DATA_READ);
-               timeout--;
-       } while (!(val & OCP_READY_MASK) && timeout);
+       } while (!(val & OCP_READY_MASK) && --timeout);
 
        if (!timeout) {
                wl1271_warning("Top register access timed out.");