diff options
author | Arik Nemtsov <arik@wizery.com> | 2011-06-26 03:36:03 -0400 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2011-07-05 14:33:20 -0400 |
commit | 3618f30f307841dba19f22d9c602a5c59cab30c7 (patch) | |
tree | dc380ac4fddfeab5346f87701e468c1d9ca47988 /drivers/net/wireless/wl12xx/conf.h | |
parent | b992c68228a3ccdf73ea4f57519e1663839a9cbe (diff) |
wl12xx: AP mode - support FW TX inactivity triggers
In AP mode we register for the MAX_TX_RETRY and INACTIVE_STA events.
Both are reported to the upper layers as a TX failure in the offending
stations.
Signed-off-by: Arik Nemtsov <arik@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/conf.h')
-rw-r--r-- | drivers/net/wireless/wl12xx/conf.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/conf.h b/drivers/net/wireless/wl12xx/conf.h index b5a7b30afda3..6080e01d92c6 100644 --- a/drivers/net/wireless/wl12xx/conf.h +++ b/drivers/net/wireless/wl12xx/conf.h | |||
@@ -713,8 +713,16 @@ struct conf_tx_settings { | |||
713 | /* | 713 | /* |
714 | * AP-mode - allow this number of TX retries to a station before an | 714 | * AP-mode - allow this number of TX retries to a station before an |
715 | * event is triggered from FW. | 715 | * event is triggered from FW. |
716 | * In AP-mode the hlids of unreachable stations are given in the | ||
717 | * "sta_tx_retry_exceeded" member in the event mailbox. | ||
716 | */ | 718 | */ |
717 | u16 ap_max_tx_retries; | 719 | u8 max_tx_retries; |
720 | |||
721 | /* | ||
722 | * AP-mode - after this number of seconds a connected station is | ||
723 | * considered inactive. | ||
724 | */ | ||
725 | u16 ap_aging_period; | ||
718 | 726 | ||
719 | /* | 727 | /* |
720 | * Configuration for TID parameters. | 728 | * Configuration for TID parameters. |