Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 149927
b: refs/heads/master
c: 3a65029
h: refs/heads/master
i:
  149925: e9ecc9b
  149923: cfd7764
  149919: 5e441cd
v: v3
  • Loading branch information
Mohamed Abbas authored and John W. Linville committed Apr 22, 2009
1 parent ef879f4 commit 14a312b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ddfcf999274838a8dfb0ccf8e69fc1e50eea3341
refs/heads/master: 3a6502927f763f05069d1b84af3a05b38eb1a818
8 changes: 7 additions & 1 deletion trunk/drivers/net/wireless/iwlwifi/iwl-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -2238,6 +2238,7 @@ void iwl_bss_info_changed(struct ieee80211_hw *hw,
u32 changes)
{
struct iwl_priv *priv = hw->priv;
int ret;

IWL_DEBUG_MAC80211(priv, "changes = 0x%X\n", changes);

Expand Down Expand Up @@ -2292,7 +2293,12 @@ void iwl_bss_info_changed(struct ieee80211_hw *hw,
}
} else if (changes && iwl_is_associated(priv) && priv->assoc_id) {
IWL_DEBUG_MAC80211(priv, "Associated Changes %d\n", changes);
iwl_send_rxon_assoc(priv);
ret = iwl_send_rxon_assoc(priv);
if (!ret)
/* Sync active_rxon with latest change. */
memcpy((void *)&priv->active_rxon,
&priv->staging_rxon,
sizeof(struct iwl_rxon_cmd));
}

}
Expand Down

0 comments on commit 14a312b

Please sign in to comment.