diff options
author | Arik Nemtsov <arik@wizery.com> | 2011-08-25 12:43:14 +0300 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2011-09-14 13:15:16 +0300 |
commit | c47e8229fa5622e4e3f2d6b8e847c4429696a275 (patch) | |
tree | a3a23038376f4efa3c4ba2770b590eb8eea9efd0 /drivers/net/wireless/wl12xx | |
parent | 56d4f8f685c073c7ed7203b78c57f5d893d65102 (diff) | |
download | blackbird-op-linux-c47e8229fa5622e4e3f2d6b8e847c4429696a275.tar.gz blackbird-op-linux-c47e8229fa5622e4e3f2d6b8e847c4429696a275.zip |
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.h | 4 |
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 { #define NUM_TX_QUEUES 4 #define NUM_RX_PKT_DESC 8 -#define AP_MAX_STATIONS 5 +#define AP_MAX_STATIONS 8 /* Broadcast and Global links + system link + links to stations */ /* * TODO: when WL1271_AP_STA_HLID_START is no longer constant, change all * the places that use this. */ -#define AP_MAX_LINKS (AP_MAX_STATIONS + 3) +#define AP_MAX_LINKS (AP_MAX_STATIONS + WL1271_AP_STA_HLID_START) /* FW status registers */ struct wl12xx_fw_status { |