diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2009-08-08 21:55:16 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-08-14 09:13:54 -0400 |
commit | af6a3fc7e728eb4cd14653c8cfc1ee81432cfd5d (patch) | |
tree | c39bb8c62b1c029e8e5f42704c1f89e2e7c1b357 /drivers/net/wireless | |
parent | d5b96a6f39a8aaa7534069b3db71048df44f023b (diff) |
ath9k: Fix regression on receiving PS poll frames
In the the patch:
ath9k: use new FIF_PSPOLL configure filter
I forgot to add the new FIF_PSPOLL to the supported mask.
Without this we mask out the FIF_PSPOLL flag therefore
we'd ignore it from mac80211.
Cc: Jouni Malinen <jouni.malinen@atheros.com>
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index a9e43f7a23f6..efe2e856397c 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c | |||
@@ -2380,6 +2380,7 @@ skip_chan_change: | |||
2380 | (FIF_PROMISC_IN_BSS | \ | 2380 | (FIF_PROMISC_IN_BSS | \ |
2381 | FIF_ALLMULTI | \ | 2381 | FIF_ALLMULTI | \ |
2382 | FIF_CONTROL | \ | 2382 | FIF_CONTROL | \ |
2383 | FIF_PSPOLL | \ | ||
2383 | FIF_OTHER_BSS | \ | 2384 | FIF_OTHER_BSS | \ |
2384 | FIF_BCN_PRBRESP_PROMISC | \ | 2385 | FIF_BCN_PRBRESP_PROMISC | \ |
2385 | FIF_FCSFAIL) | 2386 | FIF_FCSFAIL) |