aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEyal Shapira <eyal@wizery.com>2013-12-10 05:20:37 -0500
committerEmmanuel Grumbach <emmanuel.grumbach@intel.com>2013-12-17 12:39:55 -0500
commit4107dbd27758ada08303cfb51db4553156870554 (patch)
tree87865453b45b12fe65f932dbcf4bfe7e6fbca1b4
parente07be6d3fe0d7e3aa53ff294a2c9f83fb8355a64 (diff)
iwlwifi: mvm: rs: remove unnecessary debug logs
The logs are emitted in a flow in which there were retries and the rates in the rate table entry didn't match the active or search table. This doesn't indicate a problem and is expected in most cases where there will be retries for some reason. Remove the logs. Signed-off-by: Eyal Shapira <eyal@wizery.com> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
-rw-r--r--drivers/net/wireless/iwlwifi/mvm/rs.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/rs.c b/drivers/net/wireless/iwlwifi/mvm/rs.c
index bc8603254219..6d0bd45b0791 100644
--- a/drivers/net/wireless/iwlwifi/mvm/rs.c
+++ b/drivers/net/wireless/iwlwifi/mvm/rs.c
@@ -1116,14 +1116,9 @@ static void rs_tx_status(void *mvm_r, struct ieee80211_supported_band *sband,
1116 tmp_tbl = curr_tbl; 1116 tmp_tbl = curr_tbl;
1117 else if (rs_rate_match(&rate, &other_tbl->rate)) 1117 else if (rs_rate_match(&rate, &other_tbl->rate))
1118 tmp_tbl = other_tbl; 1118 tmp_tbl = other_tbl;
1119 else { 1119 else
1120 IWL_DEBUG_RATE(mvm,
1121 "Tx packet rate doesn't match ACTIVE or SEARCH tables\n");
1122 rs_dump_rate(mvm, &rate, "Tx PACKET:");
1123 rs_dump_rate(mvm, &curr_tbl->rate, "CURRENT:");
1124 rs_dump_rate(mvm, &other_tbl->rate, "OTHER:");
1125 continue; 1120 continue;
1126 } 1121
1127 rs_collect_tx_data(tmp_tbl, rate.index, 1, 1122 rs_collect_tx_data(tmp_tbl, rate.index, 1,
1128 i < retries ? 0 : legacy_success); 1123 i < retries ? 0 : legacy_success);
1129 } 1124 }