diff options
author | Arik Nemtsov <arik@wizery.com> | 2011-09-22 09:52:06 +0300 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2011-09-23 15:59:55 +0300 |
commit | 6b661895a195f244097a60d4d4c9f09983d7efc7 (patch) | |
tree | 46d40196df2a342e6b075eb4630879ecbdd80b18 /drivers/net/wireless/wl12xx/event.c | |
parent | f80c2d12e51845c3a697e9ce9d8a98287f1aae38 (diff) |
wl12xx: report the stop_ba event to all STAs in AP-mode
Use the AP_MAX_LINKS as the upper boundary for traversing the links array,
thereby guaranteeing BA sessions with all connected STAs are stopped when
the stop_ba event is received.
Signed-off-by: Arik Nemtsov <arik@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/event.c')
-rw-r--r-- | drivers/net/wireless/wl12xx/event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/event.c b/drivers/net/wireless/wl12xx/event.c index c73fe4c6b61..e66db69f8d1 100644 --- a/drivers/net/wireless/wl12xx/event.c +++ b/drivers/net/wireless/wl12xx/event.c @@ -181,7 +181,7 @@ static void wl1271_stop_ba_event(struct wl1271 *wl) } else { int i; struct wl1271_link *lnk; - for (i = WL1271_AP_STA_HLID_START; i < WL12XX_MAX_LINKS; i++) { + for (i = WL1271_AP_STA_HLID_START; i < AP_MAX_LINKS; i++) { lnk = &wl->links[i]; if (!wl1271_is_active_sta(wl, i) || !lnk->ba_bitmap) continue; |