diff options
author | Arik Nemtsov <arik@wizery.com> | 2010-10-16 18:08:58 +0200 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2011-01-24 21:11:47 +0100 |
commit | 98bdaabbbced007c7eb89cd373f9cb1640635b46 (patch) | |
tree | aa073697f83ff89a2fd64cffa44df84bffac8aff /drivers/net/wireless/wl12xx/wl12xx.h | |
parent | wl12xx: AP mode - add AP specific event (diff) | |
download | linux-98bdaabbbced007c7eb89cd373f9cb1640635b46.tar.xz linux-98bdaabbbced007c7eb89cd373f9cb1640635b46.zip |
wl12xx: AP-mode high level commands
Add commands to start/stop BSS, add/remove STA and configure encryption
keys. Split the encryption commands "set key" and "set default key" into
AP and STA specific versions.
Signed-off-by: Arik Nemtsov <arik@wizery.com>
Reviewed-by: Luciano Coelho <coelho@ti.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/wl12xx.h')
-rw-r--r-- | drivers/net/wireless/wl12xx/wl12xx.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/net/wireless/wl12xx/wl12xx.h b/drivers/net/wireless/wl12xx/wl12xx.h index c3c30b3abc15..340153f609c7 100644 --- a/drivers/net/wireless/wl12xx/wl12xx.h +++ b/drivers/net/wireless/wl12xx/wl12xx.h @@ -129,6 +129,14 @@ extern u32 wl12xx_debug_level; #define WL1271_DEFAULT_BEACON_INT 100 #define WL1271_DEFAULT_DTIM_PERIOD 1 +#define WL1271_AP_GLOBAL_HLID 0 +#define WL1271_AP_BROADCAST_HLID 1 +#define WL1271_AP_STA_HLID_START 2 + +#define WL1271_AP_BSS_INDEX 0 +#define WL1271_AP_DEF_INACTIV_SEC 300 +#define WL1271_AP_DEF_BEACON_EXP 20 + #define ACX_TX_DESCRIPTORS 32 #define WL1271_AGGR_BUFFER_SIZE (4 * PAGE_SIZE) |