aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/wl12xx/wl1271_boot.c
diff options
context:
space:
mode:
authorLuciano Coelho <luciano.coelho@nokia.com>2009-10-29 13:20:04 +0200
committerJohn W. Linville <linville@tuxdriver.com>2009-10-30 16:50:39 -0400
commite7d17cf4f7e1b8d06575b6db2397c99c151674b8 (patch)
tree8c89b5de50ee9460c90d3ad619df4c003ba65ed3 /drivers/net/wireless/wl12xx/wl1271_boot.c
parentmac80211: unconditionally set IEEE80211_TX_CTL_SEND_AFTER_DTIM (diff)
downloadlinux-dev-e7d17cf4f7e1b8d06575b6db2397c99c151674b8.tar.xz
linux-dev-e7d17cf4f7e1b8d06575b6db2397c99c151674b8.zip
wl1271: fix init loop timeout
The check after the loop which checks whether the initialization timed-out was wrong. If the initialization would succeed exactly in the 20000th time (the value set for INIT_LOOP), the driver would bail out and claim that initialization failed. Reported-by: Juha Leppanen <juha_motorsportcom@luukku.com> Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com> Reviewed-by: Janne Ylalehto <janne.ylalehto@nokia.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/wl1271_boot.c')
-rw-r--r--drivers/net/wireless/wl12xx/wl1271_boot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1271_boot.c b/drivers/net/wireless/wl12xx/wl1271_boot.c
index ba4a2b4f0f56..8678bea05ed5 100644
--- a/drivers/net/wireless/wl12xx/wl1271_boot.c
+++ b/drivers/net/wireless/wl12xx/wl1271_boot.c
@@ -380,7 +380,7 @@ static int wl1271_boot_run_firmware(struct wl1271 *wl)
}
}
- if (loop >= INIT_LOOP) {
+ if (loop > INIT_LOOP) {
wl1271_error("timeout waiting for the hardware to "
"complete initialization");
return -EIO;