aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/wl12xx
diff options
context:
space:
mode:
authorArik Nemtsov <arik@wizery.com>2011-08-25 05:43:14 -0400
committerLuciano Coelho <coelho@ti.com>2011-09-14 06:15:16 -0400
commitc47e8229fa5622e4e3f2d6b8e847c4429696a275 (patch)
treea3a23038376f4efa3c4ba2770b590eb8eea9efd0 /drivers/net/wireless/wl12xx
parent56d4f8f685c073c7ed7203b78c57f5d893d65102 (diff)
wl12xx: support up to 8 stations in AP-mode
Change the max number of AP stations to 8, up from 5. Signed-off-by: Arik Nemtsov <arik@wizery.com> Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx')
-rw-r--r--drivers/net/wireless/wl12xx/wl12xx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/wl12xx/wl12xx.h b/drivers/net/wireless/wl12xx/wl12xx.h
index fb2753c46300..ba1fde9f9b28 100644
--- a/drivers/net/wireless/wl12xx/wl12xx.h
+++ b/drivers/net/wireless/wl12xx/wl12xx.h
@@ -234,14 +234,14 @@ struct wl1271_stats {
234#define NUM_TX_QUEUES 4 234#define NUM_TX_QUEUES 4
235#define NUM_RX_PKT_DESC 8 235#define NUM_RX_PKT_DESC 8
236 236
237#define AP_MAX_STATIONS 5 237#define AP_MAX_STATIONS 8
238 238
239/* Broadcast and Global links + system link + links to stations */ 239/* Broadcast and Global links + system link + links to stations */
240/* 240/*
241 * TODO: when WL1271_AP_STA_HLID_START is no longer constant, change all 241 * TODO: when WL1271_AP_STA_HLID_START is no longer constant, change all
242 * the places that use this. 242 * the places that use this.
243 */ 243 */
244#define AP_MAX_LINKS (AP_MAX_STATIONS + 3) 244#define AP_MAX_LINKS (AP_MAX_STATIONS + WL1271_AP_STA_HLID_START)
245 245
246/* FW status registers */ 246/* FW status registers */
247struct wl12xx_fw_status { 247struct wl12xx_fw_status {