aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2009-11-02 17:17:51 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-11-11 17:09:01 -0500
commitcee71d6c1471953239ea4c13306888cf2b36426e (patch)
tree70b3b0b208228ea32dc85e01510e5556a4ab96e0 /drivers/net/wireless
parentb4afffc0cfa3f35ee011d5ed4153e49f5cc3bc96 (diff)
ath9k: use the passed ieee80211_hw on ath_rx_prepare()
this now uses the proper hw which should mean finding the right sta when using ath9k virtual wiphy stuff. Only advantage I see here is getting the rssi properly updated so the 'fix' itself isn't that great, but at least this is correct. 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/recv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/recv.c b/drivers/net/wireless/ath/ath9k/recv.c
index c910c1047ecc..c6904f0d572f 100644
--- a/drivers/net/wireless/ath/ath9k/recv.c
+++ b/drivers/net/wireless/ath/ath9k/recv.c
@@ -201,7 +201,7 @@ static int ath_rx_prepare(struct ieee80211_hw *hw,
201 201
202 rcu_read_lock(); 202 rcu_read_lock();
203 /* XXX: use ieee80211_find_sta! */ 203 /* XXX: use ieee80211_find_sta! */
204 sta = ieee80211_find_sta_by_hw(sc->hw, hdr->addr2); 204 sta = ieee80211_find_sta_by_hw(hw, hdr->addr2);
205 if (sta) { 205 if (sta) {
206 an = (struct ath_node *) sta->drv_priv; 206 an = (struct ath_node *) sta->drv_priv;
207 if (ds->ds_rxstat.rs_rssi != ATH9K_RSSI_BAD && 207 if (ds->ds_rxstat.rs_rssi != ATH9K_RSSI_BAD &&