diff mbox series

[01/12] iwlwifi: mvm: remove redundant log in iwl_mvm_tvqm_enable_txq()

Message ID iwlwifi.20200930191738.1c22d1bc0a88.I24e57317bdddc6c72f69725e1d95683a935e893d@changeid (mailing list archive)
State Accepted
Commit abd16a58a011541d9f4e0acf426e9c4e17f6be04
Delegated to: Luca Coelho
Headers show
Series iwlwifi: updates intended for v5.10 2020-09-30 part 2 | expand

Commit Message

Luca Coelho Sept. 30, 2020, 4:19 p.m. UTC
From: Luca Coelho <luciano.coelho@intel.com>

We are printing the same thing twice, "Enabling TXQ #%d".  Previously
the second print was including more information, but now it only
prints the queue number, which is already in the first print.  Remove
the redundant one.

Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
---
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c | 2 --
 1 file changed, 2 deletions(-)

Comments

Luca Coelho Oct. 1, 2020, 7:03 p.m. UTC | #1
Luca Coelho <luca@coelho.fi> wrote:

> From: Luca Coelho <luciano.coelho@intel.com>
> 
> We are printing the same thing twice, "Enabling TXQ #%d".  Previously
> the second print was including more information, but now it only
> prints the queue number, which is already in the first print.  Remove
> the redundant one.
> 
> Signed-off-by: Luca Coelho <luciano.coelho@intel.com>

12 patches applied to iwlwifi-next.git, thanks.

abd16a58a011 iwlwifi: mvm: remove redundant log in iwl_mvm_tvqm_enable_txq()
e365e7de63e5 iwlwifi: align RX status flags with firmware
bc68163ccd7d iwlwifi: mvm: d3: parse wowlan status version 11
20e671998cf3 iwlwifi: mvm: clear all scan UIDs
0179bfff9780 iwlwifi: pcie: make iwl_pcie_txq_update_byte_cnt_tbl bus independent
4bf3d7cfea3c iwlwifi: dbg: add debug host notification (DHN) time point
3ac13d56ec8c iwlwifi: mvm: ignore the scan duration parameter
9422b978355e iwlwifi: support version 5 of the alive notification
b4248c08f743 iwlwifi: use correct group for alive notification
eb95a26c11a1 iwlwifi: api: fix u32 -> __le32
16b2afe07ace iwlwifi: yoyo: add support for internal buffer allocation in D3
870f39bc9deb iwlwifi: bump FW API to 57 for AX devices
diff mbox series

Patch

diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/sta.c b/drivers/net/wireless/intel/iwlwifi/mvm/sta.c
index 827e80ff5aa6..72c9235c6bd5 100644
--- a/drivers/net/wireless/intel/iwlwifi/mvm/sta.c
+++ b/drivers/net/wireless/intel/iwlwifi/mvm/sta.c
@@ -770,8 +770,6 @@  static int iwl_mvm_tvqm_enable_txq(struct iwl_mvm *mvm,
 	IWL_DEBUG_TX_QUEUES(mvm, "Enabling TXQ #%d for sta %d tid %d\n",
 			    queue, sta_id, tid);
 
-	IWL_DEBUG_TX_QUEUES(mvm, "Enabling TXQ #%d\n", queue);
-
 	return queue;
 }