From: Luis R. Rodriguez Date: Sun, 9 Aug 2009 01:55:16 +0000 (-0400) Subject: ath9k: Fix regression on receiving PS poll frames X-Git-Tag: upstream/snapshot3+hdmi~17671^2~367^2~48 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=af6a3fc7e728eb4cd14653c8cfc1ee81432cfd5d;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 Signed-off-by: Luis R. Rodriguez Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index a9e43f7..efe2e85 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c @@ -2380,6 +2380,7 @@ skip_chan_change: (FIF_PROMISC_IN_BSS | \ FIF_ALLMULTI | \ FIF_CONTROL | \ + FIF_PSPOLL | \ FIF_OTHER_BSS | \ FIF_BCN_PRBRESP_PROMISC | \ FIF_FCSFAIL)