]> Pileus Git - ~andy/linux/commitdiff
iwlegacy: change IL_ERR to D_HT in iwl4965_rs_tl_turn_on_agg_for_tid
authorGreg Dietsche <Gregory.Dietsche@cuw.edu>
Sun, 28 Aug 2011 13:32:10 +0000 (08:32 -0500)
committerStanislaw Gruszka <sgruszka@redhat.com>
Tue, 15 Nov 2011 13:51:46 +0000 (14:51 +0100)
This message should be a debug message and not an error.

Signed-off-by: Greg Dietsche <Gregory.Dietsche@cuw.edu>
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
drivers/net/wireless/iwlegacy/4965-rs.c

index 4bc5a184582150a84897d63a608b375b4b603f67..93c3a4d9b9b59887cf21f151d18c84db90ed0409 100644 (file)
@@ -371,10 +371,10 @@ il4965_rs_tl_turn_on_agg_for_tid(struct il_priv *il, struct il_lq_sta *lq_data,
                        IL_ERR("Fail start Tx agg on tid: %d\n", tid);
                        ieee80211_stop_tx_ba_session(sta, tid);
                }
-       } else {
-               IL_ERR("Aggregation not enabled for tid %d "
-                      "because load = %u\n", tid, load);
-       }
+       } else
+               D_HT("Aggregation not enabled for tid %d because load = %u\n",
+                    tid, load);
+
        return ret;
 }