diff options
author | Helmut Schaa <helmut.schaa@googlemail.com> | 2012-03-14 03:56:47 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-03-15 13:40:25 -0400 |
commit | 9d4f09b80fb69985eca86aaf4df195b80e3d02a8 (patch) | |
tree | 55b82f15bcca678002ce9fb2f464047a4c44458c | |
parent | b093863edd20b64fa444b770a8701ddcbe9faea1 (diff) |
rt2x00: Set IEEE80211_HW_REPORTS_TX_ACK_STATUS in rt2800
rt2800 already reports the tx ack status of each frame back to mac80211.
Advertise this by setting IEEE80211_HW_REPORTS_TX_ACK_STATUS for rt2800.
This allows some mac80211 features like frame loss notifications to work
with rt2800.
Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2800lib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2800lib.c b/drivers/net/wireless/rt2x00/rt2800lib.c index 474b5b9e6238..6c0a12ea6a15 100644 --- a/drivers/net/wireless/rt2x00/rt2800lib.c +++ b/drivers/net/wireless/rt2x00/rt2800lib.c | |||
@@ -4500,7 +4500,9 @@ int rt2800_probe_hw_mode(struct rt2x00_dev *rt2x00dev) | |||
4500 | IEEE80211_HW_SIGNAL_DBM | | 4500 | IEEE80211_HW_SIGNAL_DBM | |
4501 | IEEE80211_HW_SUPPORTS_PS | | 4501 | IEEE80211_HW_SUPPORTS_PS | |
4502 | IEEE80211_HW_PS_NULLFUNC_STACK | | 4502 | IEEE80211_HW_PS_NULLFUNC_STACK | |
4503 | IEEE80211_HW_AMPDU_AGGREGATION; | 4503 | IEEE80211_HW_AMPDU_AGGREGATION | |
4504 | IEEE80211_HW_REPORTS_TX_ACK_STATUS; | ||
4505 | |||
4504 | /* | 4506 | /* |
4505 | * Don't set IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING for USB devices | 4507 | * Don't set IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING for USB devices |
4506 | * unless we are capable of sending the buffered frames out after the | 4508 | * unless we are capable of sending the buffered frames out after the |