2011-04-17 14:25:32

by db

[permalink] [raw]
Subject: [PATCH] Remove extra output from normal iwlwifi use

I personally do not think that having the IWL_ERR, which I have
removed below, enabled during normal use (not debugging) is of any use
to anyone.

--- drivers/net/wireless/iwlwifi/iwl-agn-rs.c.orig 2011-04-18
00:22:55.000000000 +1000
+++ drivers/net/wireless/iwlwifi/iwl-agn-rs.c 2011-04-16
01:09:57.000000000 +1000
@@ -398,10 +398,7 @@
tid);
ieee80211_stop_tx_ba_session(sta, tid);
}
- } else {
- IWL_ERR(priv, "Aggregation not enabled for tid %d "
- "because load = %u\n", tid, load);
- }
+ }
return ret;
}


--- drivers/net/wireless/iwlwifi/iwl-agn-tx.c.orig 2011-04-18
00:21:05.000000000 +1000
+++ drivers/net/wireless/iwlwifi/iwl-agn-tx.c 2011-04-16
01:08:29.000000000 +1000
@@ -991,9 +991,6 @@
if (unlikely(tx_fifo < 0))
return tx_fifo;

- IWL_WARN(priv, "%s on ra = %pM tid = %d\n",
- __func__, sta->addr, tid);
-
sta_id = iwl_sta_id(sta);
if (sta_id == IWL_INVALID_STATION) {
IWL_ERR(priv, "Start AGG on invalid station\n");

Signed-off-by: dave bl <[email protected]>