mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 14:36:46 +07:00
drivers/net/wireless/iwlwifi/iwl-tx.c: fix gcc-3.4.5 warning
drivers/net/wireless/iwlwifi/iwl-tx.c: In function `iwl_hw_txq_ctx_free': drivers/net/wireless/iwlwifi/iwl-tx.c:410: warning: suggest explicit braces to avoid ambiguous `else' Cc: Zhu Yi <yi.zhu@intel.com> Cc: Reinette Chatre <reinette.chatre@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
2ab81d4a9a
commit
77ca7d9e2c
@ -407,13 +407,14 @@ void iwl_hw_txq_ctx_free(struct iwl_priv *priv)
|
|||||||
int txq_id;
|
int txq_id;
|
||||||
|
|
||||||
/* Tx queues */
|
/* Tx queues */
|
||||||
if (priv->txq)
|
if (priv->txq) {
|
||||||
for (txq_id = 0; txq_id < priv->hw_params.max_txq_num;
|
for (txq_id = 0; txq_id < priv->hw_params.max_txq_num;
|
||||||
txq_id++)
|
txq_id++)
|
||||||
if (txq_id == IWL_CMD_QUEUE_NUM)
|
if (txq_id == IWL_CMD_QUEUE_NUM)
|
||||||
iwl_cmd_queue_free(priv);
|
iwl_cmd_queue_free(priv);
|
||||||
else
|
else
|
||||||
iwl_tx_queue_free(priv, txq_id);
|
iwl_tx_queue_free(priv, txq_id);
|
||||||
|
}
|
||||||
iwl_free_dma_ptr(priv, &priv->kw);
|
iwl_free_dma_ptr(priv, &priv->kw);
|
||||||
|
|
||||||
iwl_free_dma_ptr(priv, &priv->scd_bc_tbls);
|
iwl_free_dma_ptr(priv, &priv->scd_bc_tbls);
|
||||||
|
Loading…
Reference in New Issue
Block a user