diff options
author | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2010-08-23 10:57:06 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-08-25 14:34:19 -0400 |
commit | c6c996b5de82b5de4b4b5a31941aab725961a6dd (patch) | |
tree | f74cf65e9ef0b0931e27ad40430dc4c9f082618d | |
parent | aeb4a2eec2b1d2ac6507e9cec2aecc46fdba8741 (diff) |
iwlwifi: indicate bt_kill condition when receive tx reply
Generate log when receive tx reply with bt_kill count > 0 and
in advance bt coex mode
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn-lib.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-lib.c b/drivers/net/wireless/iwlwifi/iwl-agn-lib.c index e0ec6c08b222..ea242401b5a3 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-lib.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-lib.c | |||
@@ -247,7 +247,14 @@ static void iwlagn_rx_reply_tx(struct iwl_priv *priv, | |||
247 | struct iwl_ht_agg *agg; | 247 | struct iwl_ht_agg *agg; |
248 | 248 | ||
249 | agg = &priv->stations[sta_id].tid[tid].agg; | 249 | agg = &priv->stations[sta_id].tid[tid].agg; |
250 | 250 | /* | |
251 | * If the BT kill count is non-zero, we'll get this | ||
252 | * notification again. | ||
253 | */ | ||
254 | if (tx_resp->bt_kill_count && tx_resp->frame_count == 1 && | ||
255 | priv->cfg->advanced_bt_coexist) { | ||
256 | IWL_WARN(priv, "receive reply tx with bt_kill\n"); | ||
257 | } | ||
251 | iwlagn_tx_status_reply_tx(priv, agg, tx_resp, txq_id, index); | 258 | iwlagn_tx_status_reply_tx(priv, agg, tx_resp, txq_id, index); |
252 | 259 | ||
253 | /* check if BAR is needed */ | 260 | /* check if BAR is needed */ |