commit: 5820de5303f73d48dcc3a053c875d1f0da7eef67 From: Christian Lamparter <[email protected]> Date: Thu, 3 Feb 2011 22:22:55 +0100 Subject: [PATCH] carl9170: fix typo in PS code
This patch fixes a off-by-one bug which bugged the driver's PS-POLL capability. Cc: <[email protected]> Signed-off-by: Christian Lamparter <[email protected]> Signed-off-by: John W. Linville <[email protected]> --- drivers/net/wireless/ath/carl9170/rx.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/wireless/ath/carl9170/rx.c b/drivers/net/wireless/ath/carl9170/rx.c index 939a0e9..84866a4 100644 --- a/drivers/net/wireless/ath/carl9170/rx.c +++ b/drivers/net/wireless/ath/carl9170/rx.c @@ -564,7 +564,7 @@ static void carl9170_ps_beacon(struct ar9170 *ar, void *data, unsigned int len) cam = ieee80211_check_tim(tim_ie, tim_len, ar->common.curaid); /* 2. Maybe the AP wants to send multicast/broadcast data? */ - cam = !!(tim_ie->bitmap_ctrl & 0x01); + cam |= !!(tim_ie->bitmap_ctrl & 0x01); if (!cam) { /* back to low-power land. */ _______________________________________________ stable mailing list [email protected] http://linux.kernel.org/mailman/listinfo/stable
